Home
last modified time | relevance | path

Searched refs:coordinateSystemTypes (Results 1 - 17 of 17) sorted by relevance

/base/location/test/location_geofence/source/
H A Dgeofence_sdk_test.cpp59 std::vector<CoordinateSystemType> coordinateSystemTypes; in HWTEST_F() local
60 geofenceManager_->GetGeofenceSupportedCoordTypes(coordinateSystemTypes); in HWTEST_F()
/base/location/interfaces/inner_api/include/
H A Dgeofence_sdk.h38 std::vector<CoordinateSystemType>& coordinateSystemTypes);
69 std::vector<CoordinateSystemType>& coordinateSystemTypes);
/base/location/frameworks/native/geofence_sdk/source/
H A Dgeofence_sdk.cpp142 std::vector<CoordinateSystemType>& coordinateSystemTypes) in GetGeofenceSupportedCoordTypes()
153 return proxy->GetGeofenceSupportedCoordTypes(coordinateSystemTypes); in GetGeofenceSupportedCoordTypes()
212 std::vector<CoordinateSystemType>& coordinateSystemTypes) in GetGeofenceSupportedCoordTypes()
226 coordinateSystemTypes.push_back(static_cast<CoordinateSystemType>(coordinateSystemType)); in GetGeofenceSupportedCoordTypes()
141 GetGeofenceSupportedCoordTypes( std::vector<CoordinateSystemType>& coordinateSystemTypes) GetGeofenceSupportedCoordTypes() argument
211 GetGeofenceSupportedCoordTypes( std::vector<CoordinateSystemType>& coordinateSystemTypes) GetGeofenceSupportedCoordTypes() argument
/base/location/services/location_locator/locator/include/
H A Dgnss_ability_proxy.h55 std::vector<CoordinateSystemType>& coordinateSystemTypes) override;
H A Dlocator_ability.h203 std::vector<CoordinateSystemType>& coordinateSystemTypes);
/base/location/test/location_gnss/mock/include/
H A Dmock_gnss_ability_stub.h68 (std::vector<CoordinateSystemType>& coordinateSystemTypes));
/base/location/frameworks/cj/source/
H A Dgeolocationmanager_impl.cpp830 std::vector<Location::CoordinateSystemType> coordinateSystemTypes; in GetGeofenceSupportedCoordTypes() local
831 errCode = g_geofenceClient->GetGeofenceSupportedCoordTypes(coordinateSystemTypes); in GetGeofenceSupportedCoordTypes()
835 if (coordinateSystemTypes.size() == 0) { in GetGeofenceSupportedCoordTypes()
838 int32_t* head = static_cast<int32_t*>(malloc(sizeof(int32_t) * coordinateSystemTypes.size())); in GetGeofenceSupportedCoordTypes()
843 for (size_t i = 0; i < coordinateSystemTypes.size(); i++) { in GetGeofenceSupportedCoordTypes()
844 head[i] = coordinateSystemTypes[i]; in GetGeofenceSupportedCoordTypes()
847 res.size = static_cast<int64_t>(coordinateSystemTypes.size()); in GetGeofenceSupportedCoordTypes()
/base/location/test/fuzztest/locator/gnss_fuzzer/
H A Dgnss_fuzzer.cpp157 std::vector<CoordinateSystemType> coordinateSystemTypes; in GnssProxyFuzzTest003() local
158 proxy->QuerySupportCoordinateSystemType(coordinateSystemTypes); in GnssProxyFuzzTest003()
/base/location/services/location_gnss/gnss/source/
H A Dgnss_ability_skeleton.cpp333 std::vector<CoordinateSystemType> coordinateSystemTypes; in QuerySupportCoordinateSystemTypeInner() local
334 auto errCode = QuerySupportCoordinateSystemType(coordinateSystemTypes); in QuerySupportCoordinateSystemTypeInner()
339 int size = static_cast<int>(coordinateSystemTypes.size()) > COORDINATE_SYSTEM_TYPE_SIZE ? in QuerySupportCoordinateSystemTypeInner()
340 COORDINATE_SYSTEM_TYPE_SIZE : static_cast<int>(coordinateSystemTypes.size()); in QuerySupportCoordinateSystemTypeInner()
343 reply.WriteInt32(static_cast<int>(coordinateSystemTypes[i])); in QuerySupportCoordinateSystemTypeInner()
H A Dgnss_ability.cpp1397 std::vector<CoordinateSystemType>& coordinateSystemTypes) in QuerySupportCoordinateSystemType()
1404 fenceStruct.coordinateSystemTypes = supportedTypes; in QuerySupportCoordinateSystemType()
1407 coordinateSystemTypes = fenceStruct.coordinateSystemTypes; in QuerySupportCoordinateSystemType()
1396 QuerySupportCoordinateSystemType( std::vector<CoordinateSystemType>& coordinateSystemTypes) QuerySupportCoordinateSystemType() argument
/base/location/services/location_gnss/gnss/include/
H A Dgnss_ability_skeleton.h53 std::vector<CoordinateSystemType>& coordinateSystemTypes) = 0;
H A Dgnss_ability.h111 std::vector<CoordinateSystemType> coordinateSystemTypes; member
219 std::vector<CoordinateSystemType>& coordinateSystemTypes) override;
/base/location/services/location_locator/locator/source/
H A Dgnss_ability_proxy.cpp423 std::vector<CoordinateSystemType>& coordinateSystemTypes) in QuerySupportCoordinateSystemType()
445 coordinateSystemTypes.push_back(static_cast<CoordinateSystemType>(reply.ReadInt32())); in QuerySupportCoordinateSystemType()
422 QuerySupportCoordinateSystemType( std::vector<CoordinateSystemType>& coordinateSystemTypes) QuerySupportCoordinateSystemType() argument
H A Dlocator_skeleton.cpp1019 std::vector<CoordinateSystemType> coordinateSystemTypes; in PreQuerySupportCoordinateSystemType() local
1020 auto errCode = locatorAbility->QuerySupportCoordinateSystemType(coordinateSystemTypes); in PreQuerySupportCoordinateSystemType()
1025 int size = static_cast<int>(coordinateSystemTypes.size()) > COORDINATE_SYSTEM_TYPE_SIZE ? in PreQuerySupportCoordinateSystemType()
1026 COORDINATE_SYSTEM_TYPE_SIZE : static_cast<int>(coordinateSystemTypes.size()); in PreQuerySupportCoordinateSystemType()
1029 reply.WriteInt32(static_cast<int>(coordinateSystemTypes[i])); in PreQuerySupportCoordinateSystemType()
H A Dlocator_ability.cpp1474 std::vector<CoordinateSystemType>& coordinateSystemTypes) in QuerySupportCoordinateSystemType()
1489 coordinateSystemTypes.push_back(static_cast<CoordinateSystemType>(coordinateSystemType)); in QuerySupportCoordinateSystemType()
1473 QuerySupportCoordinateSystemType( std::vector<CoordinateSystemType>& coordinateSystemTypes) QuerySupportCoordinateSystemType() argument
/base/location/frameworks/js/napi/source/
H A Dlocation_napi_adapter.cpp1220 std::vector<CoordinateSystemType> coordinateSystemTypes; in CreateReverseGeocodeAsyncContext() local
1222 g_geofenceClient->GetGeofenceSupportedCoordTypes(coordinateSystemTypes); in CreateReverseGeocodeAsyncContext()
1229 napi_create_array_with_length(env, coordinateSystemTypes.size(), &res)); in CreateReverseGeocodeAsyncContext()
1231 for (auto iter = coordinateSystemTypes.begin(); iter != coordinateSystemTypes.end(); ++iter) { in CreateReverseGeocodeAsyncContext()
/base/location/test/location_gnss/source/
H A Dgnss_ability_test.cpp595 std::vector<CoordinateSystemType> coordinateSystemTypes; in HWTEST_F() local
596 proxy_->QuerySupportCoordinateSystemType(coordinateSystemTypes); in HWTEST_F()
1942 std::vector<CoordinateSystemType> coordinateSystemTypes; in HWTEST_F() local
1943 ability_->QuerySupportCoordinateSystemType(coordinateSystemTypes); in HWTEST_F()

Completed in 23 milliseconds