Home
last modified time | relevance | path

Searched refs:vcLoc (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/location/services/location_passive/passive/source/
H A Dpassive_ability.cpp217 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
220 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
223 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
251 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in ProcessEvent() local
252 if (vcLoc == nullptr) { in ProcessEvent()
256 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in ProcessEvent()
/ohos5.0/base/location/services/location_network/network/source/
H A Dnetwork_ability.cpp497 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
500 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
503 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
615 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in ProcessEvent() local
616 if (vcLoc != nullptr) { in ProcessEvent()
618 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in ProcessEvent()
/ohos5.0/base/location/services/location_gnss/gnss/source/
H A Dgnss_ability.cpp1517 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
1520 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
1523 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
1702 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in HandleSetMockedLocations() local
1703 if (vcLoc != nullptr) { in HandleSetMockedLocations()
1705 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in HandleSetMockedLocations()
/ohos5.0/base/location/services/location_locator/locator/source/
H A Dlocator_skeleton.cpp990 std::vector<std::shared_ptr<Location>> vcLoc; in PreSetMockedLocations() local
992 vcLoc.push_back(Location::UnmarshallingShared(data)); in PreSetMockedLocations()
994 reply.WriteInt32(locatorAbility->SetMockedLocations(timeInterval, vcLoc)); in PreSetMockedLocations()