/base/location/frameworks/location_common/common/source/ |
H A D | geo_address.cpp | 22 GeoAddress::GeoAddress() in GeoAddress() function in OHOS::Location::GeoAddress 28 std::string GeoAddress::GetDescriptions(int index) in GetDescriptions() 46 double GeoAddress::GetLatitude() in GetLatitude() 51 double GeoAddress::GetLongitude() in GetLongitude() 56 bool GeoAddress::GetIsSystemApp() in GetIsSystemApp() 61 void GeoAddress::SetIsSystemApp(bool isSystemApp) in SetIsSystemApp() 66 std::unique_ptr<GeoAddress> GeoAddress::Unmarshalling(Parcel& parcel) in Unmarshalling() 68 std::unique_ptr<GeoAddress> geoAddres in Unmarshalling() [all...] |
H A D | geo_coding_mock_info.cpp | 30 geoAddress_ = std::make_shared<GeoAddress>(); in GeocodingMockInfo() 38 std::shared_ptr<GeoAddress> GeocodingMockInfo::GetGeoAddressInfo() in GetGeoAddressInfo() 48 void GeocodingMockInfo::SetGeoAddressInfo(std::shared_ptr<GeoAddress> geoAddress) in SetGeoAddressInfo() 59 geoAddress_ = GeoAddress::Unmarshalling(parcel); in ReadFromParcel()
|
/base/location/frameworks/native/locator_sdk/source/ |
H A D | geo_convert_callback_host.cpp | 45 std::list<std::shared_ptr<GeoAddress>> result; in OnRemoteRequest() 47 result.push_back(GeoAddress::Unmarshalling(data)); in OnRemoteRequest() 65 void GeoConvertCallbackHost::OnResults(std::list<std::shared_ptr<GeoAddress>> &results) in OnResults() 82 std::list<std::shared_ptr<GeoAddress>> GeoConvertCallbackHost::GetResult() in GetResult() 85 std::list<std::shared_ptr<GeoAddress>> result; in GetResult()
|
H A D | locator_proxy.cpp | 674 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinateV9() 681 if (resultSize > GeoAddress::MAX_RESULT) { in GetAddressByCoordinateV9() 682 resultSize = GeoAddress::MAX_RESULT; in GetAddressByCoordinateV9() 685 replyList.push_back(GeoAddress::Unmarshalling(reply)); in GetAddressByCoordinateV9() 693 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationNameV9() 700 if (resultSize > GeoAddress::MAX_RESULT) { in GetAddressByLocationNameV9() 701 resultSize = GeoAddress::MAX_RESULT; in GetAddressByLocationNameV9() 704 replyList.push_back(GeoAddress::Unmarshalling(reply)); in GetAddressByLocationNameV9()
|
H A D | locator_impl.cpp | 362 void LocatorImpl::GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinate() 399 void LocatorImpl::GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationName() 944 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinateV9() 980 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationNameV9()
|
H A D | country_code_manager.cpp | 187 std::list<std::shared_ptr<GeoAddress>> replyList; in GetCountryCodeByLocation()
|
/base/location/interfaces/inner_api/include/ |
H A D | geo_address.h | 26 class GeoAddress : public Parcelable { class 28 GeoAddress(); 29 ~GeoAddress() override = default; 31 static std::unique_ptr<GeoAddress> Unmarshalling(Parcel& parcel);
|
H A D | geo_coding_mock_info.h | 36 std::shared_ptr<GeoAddress> GetGeoAddressInfo(); 39 void SetGeoAddressInfo(std::shared_ptr<GeoAddress> geoAddress); 42 std::shared_ptr<GeoAddress> geoAddress_;
|
H A D | i_geocode_callback.h | 34 virtual void OnResults(std::list<std::shared_ptr<GeoAddress>> &results) = 0;
|
H A D | locator.h | 51 virtual void GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) = 0; 52 virtual void GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) = 0; 86 std::list<std::shared_ptr<GeoAddress>>& replyList) = 0; 88 std::list<std::shared_ptr<GeoAddress>>& replyList) = 0;
|
H A D | locator_impl.h | 197 void GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList); 205 void GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList); 459 std::list<std::shared_ptr<GeoAddress>>& replyList); 469 std::list<std::shared_ptr<GeoAddress>>& replyList);
|
H A D | locator_proxy.h | 97 std::list<std::shared_ptr<GeoAddress>>& replyList); 99 std::list<std::shared_ptr<GeoAddress>>& replyList);
|
H A D | location_async_context.h | 196 std::list<std::shared_ptr<GeoAddress>> replyList; 209 std::list<std::shared_ptr<GeoAddress>> replyList;
|
/base/location/frameworks/native/locator_sdk/include/ |
H A D | geo_convert_callback_host.h | 31 void OnResults(std::list<std::shared_ptr<GeoAddress>> &results) override; 33 std::list<std::shared_ptr<GeoAddress>> GetResult(); 36 std::list<std::shared_ptr<GeoAddress>> result_;
|
/base/location/test/location_common/include/ |
H A D | location_common_test.h | 33 void SetGeoAddress(std::unique_ptr<GeoAddress>& geoAddress); 34 void VerifyGeoAddressReadFromParcel(std::unique_ptr<GeoAddress>& geoAddress);
|
/base/location/test/location_geocode/mock/include/ |
H A D | mock_geo_convert_callback_host.h | 38 MOCK_METHOD(void, OnResults, (std::list<std::shared_ptr<GeoAddress>> &results));
|
/base/location/test/location_common/source/ |
H A D | location_common_test.cpp | 89 void LocationCommonTest::SetGeoAddress(std::unique_ptr<GeoAddress>& geoAddress) in SetGeoAddress() 117 void LocationCommonTest::VerifyGeoAddressReadFromParcel(std::unique_ptr<GeoAddress>& geoAddress) in VerifyGeoAddressReadFromParcel() 198 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F() 217 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F() 471 std::shared_ptr<GeoAddress> geoAddress = std::make_shared<GeoAddress>(); in HWTEST_F() 536 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F() [all...] |
/base/location/test/location_geocode/source/ |
H A D | geo_convert_callback_host_test.cpp | 110 std::list<std::shared_ptr<GeoAddress>> results; in HWTEST_F()
|
/base/location/test/location_locator/source/ |
H A D | location_without_permission_test.cpp | 116 std::list<std::shared_ptr<GeoAddress>> geoAddressList001; in HWTEST_F() 119 std::list<std::shared_ptr<GeoAddress>> geoAddressList002; in HWTEST_F()
|
H A D | locator_impl_test.cpp | 351 std::list<std::shared_ptr<GeoAddress>> geoAddressList001; in HWTEST_F() 380 std::list<std::shared_ptr<GeoAddress>> geoAddressList002; in HWTEST_F() 405 std::list<std::shared_ptr<GeoAddress>> geoAddressList003; in HWTEST_F()
|
/base/location/frameworks/cj/include/ |
H A D | geolocationmanager_utils.h | 195 CJGeoAddressArr ListGeoAddressToCJGeoAddressArr(std::list<std::shared_ptr<Location::GeoAddress>>& replyList);
|
/base/location/frameworks/js/napi/include/ |
H A D | napi_util.h | 47 std::list<std::shared_ptr<GeoAddress>>& replyList, napi_value& arrayResult);
|
/base/location/frameworks/cj/source/ |
H A D | geolocationmanager_utils.cpp | 120 void HandleDescriptions(std::shared_ptr<Location::GeoAddress>& geoAddress, CJGeoAddress& eachObj) in HandleDescriptions() 135 CJGeoAddressArr ListGeoAddressToCJGeoAddressArr(std::list<std::shared_ptr<Location::GeoAddress>>& replyList) in ListGeoAddressToCJGeoAddressArr()
|
H A D | geolocationmanager_impl.cpp | 325 std::list<std::shared_ptr<Location::GeoAddress>> replyList; in GetAddressesFromLocation() 355 std::list<std::shared_ptr<Location::GeoAddress>> replyList; in GetAddressesFromLocationName()
|
/base/location/frameworks/js/napi/source/ |
H A D | napi_util.cpp | 177 std::list<std::shared_ptr<GeoAddress>>& replyList, napi_value& arrayResult) in GeoAddressesToJsObj() 532 const std::string& fieldStr, std::shared_ptr<GeoAddress> address) in GetGeoAddressInfo() 588 std::shared_ptr<GeoAddress> geoAddress = std::make_shared<GeoAddress>(); in JsObjToRevGeocodeMock()
|