Home
last modified time | relevance | path

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

/base/location/services/location_passive/passive/source/
Dpassive_ability.cpp198 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
201 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
204 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
232 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in ProcessEvent() local
233 if (vcLoc == nullptr) { in ProcessEvent()
237 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in ProcessEvent()
/base/location/services/location_network/network/source/
Dnetwork_ability.cpp397 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
400 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
403 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
449 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in ProcessEvent() local
450 if (vcLoc != nullptr) { in ProcessEvent()
452 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in ProcessEvent()
/base/location/services/location_gnss/gnss/source/
Dgnss_ability.cpp710 std::shared_ptr<std::vector<std::shared_ptr<Location>>> vcLoc = in SendMessage() local
713 vcLoc->push_back(Location::UnmarshallingShared(data)); in SendMessage()
716 AppExecFwk::InnerEvent::Get(code, vcLoc, timeInterval); in SendMessage()
771 auto vcLoc = event->GetSharedObject<std::vector<std::shared_ptr<Location>>>(); in ProcessEvent() local
772 if (vcLoc != nullptr) { in ProcessEvent()
774 for (auto it = vcLoc->begin(); it != vcLoc->end(); ++it) { in ProcessEvent()
/base/location/services/location_locator/locator/source/
Dlocator_skeleton.cpp708 std::vector<std::shared_ptr<Location>> vcLoc; in PreSetMockedLocations() local
710 vcLoc.push_back(Location::UnmarshallingShared(data)); in PreSetMockedLocations()
712 reply.WriteInt32(locatorAbility->SetMockedLocations(timeInterval, vcLoc)); in PreSetMockedLocations()