lp://staging/~thomas-voss/location-service/generalize-glue-code-for-agps-operation
Created by
Thomas Voß
and last modified
- Get this branch:
- bzr branch lp://staging/~thomas-voss/location-service/generalize-glue-code-for-agps-operation
Only
Thomas Voß
can upload to this branch. If you are
Thomas Voß
please log in for upload directions.
Branch merges
Propose for merging
No branches
dependent on this one.
Ready for review
for merging
into
lp://staging/location-service/trunk
- PS Jenkins bot: Needs Fixing (continuous-integration)
- Ubuntu Phablet Team: Pending requested
-
Diff: 5020 lines (+4045/-151) (has conflicts)52 files modified3rd-party/boost/core/scoped_enum.hpp (+192/-0)
3rd-party/boost/endian/arithmetic.hpp (+413/-0)
3rd-party/boost/endian/buffers.hpp (+515/-0)
3rd-party/boost/endian/conversion.hpp (+487/-0)
3rd-party/boost/endian/detail/config.hpp (+62/-0)
3rd-party/boost/endian/detail/cover_operators.hpp (+142/-0)
3rd-party/boost/endian/detail/disable_warnings.hpp (+33/-0)
3rd-party/boost/endian/detail/disable_warnings_pop.hpp (+12/-0)
3rd-party/boost/endian/detail/intrinsic.hpp (+64/-0)
3rd-party/boost/endian/detail/lightweight_test.hpp (+223/-0)
3rd-party/boost/endian/endian.hpp (+19/-0)
3rd-party/boost/endian/std_pair.hpp (+38/-0)
CMakeLists.txt (+3/-0)
debian/changelog (+23/-0)
debian/source/format (+1/-1)
examples/service/service.cpp (+14/-15)
include/location_service/com/ubuntu/location/connectivity/manager.h (+21/-0)
include/location_service/com/ubuntu/location/provider_factory.h (+3/-0)
po/ubuntu-location-service.pot (+7/-11)
src/location_service/com/ubuntu/location/CMakeLists.txt (+8/-0)
src/location_service/com/ubuntu/location/connectivity/ofono.h (+115/-1)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.cpp (+30/-2)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.h (+5/-1)
src/location_service/com/ubuntu/location/provider_factory.cpp (+14/-0)
src/location_service/com/ubuntu/location/providers/config.cpp (+7/-0)
src/location_service/com/ubuntu/location/providers/dummy/CMakeLists.txt (+3/-1)
src/location_service/com/ubuntu/location/providers/dummy/delayed_provider.cpp (+42/-0)
src/location_service/com/ubuntu/location/providers/dummy/delayed_provider.h (+62/-0)
src/location_service/com/ubuntu/location/providers/gps/CMakeLists.txt (+13/-10)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.cpp (+122/-30)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.h (+34/-5)
src/location_service/com/ubuntu/location/providers/gps/hardware_abstraction_layer.cpp (+30/-0)
src/location_service/com/ubuntu/location/providers/gps/hardware_abstraction_layer.h (+35/-4)
src/location_service/com/ubuntu/location/providers/gps/sntp_client.cpp (+210/-0)
src/location_service/com/ubuntu/location/providers/gps/sntp_client.h (+210/-0)
src/location_service/com/ubuntu/location/providers/gps/sntp_reference_time_source.cpp (+57/-0)
src/location_service/com/ubuntu/location/providers/gps/sntp_reference_time_source.h (+51/-0)
src/location_service/com/ubuntu/location/providers/remote/provider.cpp (+23/-0)
src/location_service/com/ubuntu/location/service/daemon.cpp (+16/-19)
src/location_service/com/ubuntu/location/service/implementation.cpp (+6/-4)
src/location_service/com/ubuntu/location/service/provider_daemon.cpp (+1/-1)
src/location_service/com/ubuntu/location/service/runtime.h (+1/-1)
src/location_service/com/ubuntu/location/service/runtime_tests.cpp (+125/-29)
src/location_service/com/ubuntu/location/service/trust_store_permission_manager.cpp (+1/-1)
src/location_service/com/ubuntu/location/time_since_boot.cpp (+140/-0)
src/location_service/com/ubuntu/location/time_since_boot.h (+35/-0)
tests/CMakeLists.txt (+2/-0)
tests/delayed_service_test.cpp (+193/-0)
tests/gps_provider_test.cpp (+42/-8)
tests/mock_event_receiver.h (+35/-0)
tests/remote_providerd_test.cpp (+1/-7)
tests/sntp_client_test.cpp (+104/-0)
Superseded
for merging
into
lp://staging/location-service/15.04
- Ubuntu Phablet Team: Pending requested
-
Diff: 473 lines (+285/-10)8 files modifiedinclude/location_service/com/ubuntu/location/connectivity/manager.h (+21/-0)
src/location_service/com/ubuntu/location/connectivity/ofono.h (+115/-1)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.cpp (+34/-2)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.h (+5/-1)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.cpp (+77/-6)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.h (+9/-0)
src/location_service/com/ubuntu/location/providers/gps/hardware_abstraction_layer.h (+22/-0)
tests/gps_provider_test.cpp (+2/-0)
Branch information
Recent revisions
- 227. By Thomas Voß
-
Do not call std::future<T>::get twice to get hold of an iterator over all resolved endpoints.
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp://staging/location-service/trunk