/base/location/test/location_locator/source/ |
D | work_record_test.cpp | 37 void WorkRecordTest::VerifyMarshalling(std::unique_ptr<WorkRecord>& workrecord) in VerifyMarshalling() argument 40 workrecord->Marshalling(parcel); in VerifyMarshalling() 67 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(parcel); variable 68 VerifyMarshalling(workrecord); 69 EXPECT_EQ(1, workrecord->Size()); 70 EXPECT_EQ(false, workrecord->Remove("WrongName")); 71 EXPECT_EQ(1, workrecord->Size()); 72 EXPECT_EQ(true, workrecord->Remove("name")); 73 EXPECT_EQ(0, workrecord->Size()); // remove successfully 75 EXPECT_EQ(true, workrecord->Add(SYSTEM_UID, 0, "name", 1, "0")); [all …]
|
/base/location/services/location_passive/passive/source/ |
D | passive_ability_skeleton.cpp | 50 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in OnRemoteRequest() local 51 reply.WriteInt32(SendLocationRequest(*workrecord)); in OnRemoteRequest()
|
D | passive_ability.cpp | 80 LocationErrCode PassiveAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 82 LocationRequest(workrecord); in SendLocationRequest()
|
/base/location/test/location_locator/include/ |
D | work_record_test.h | 29 void VerifyMarshalling(std::unique_ptr<WorkRecord>& workrecord);
|
/base/location/services/location_network/network/source/ |
D | network_ability.cpp | 176 LocationErrCode NetworkAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 178 LocationRequest(workrecord); in SendLocationRequest() 358 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in SendMessage() local 359 AppExecFwk::InnerEvent::Pointer event = AppExecFwk::InnerEvent::Get(code, workrecord); in SendMessage() 420 std::unique_ptr<WorkRecord> workrecord = event->GetUniqueObject<WorkRecord>(); in ProcessEvent() local 421 if (workrecord != nullptr) { in ProcessEvent() 422 networkAbility->LocationRequest(*workrecord); in ProcessEvent()
|
/base/location/services/location_locator/locator/include/ |
D | subability_common.h | 61 virtual LocationErrCode SendLocationRequest(WorkRecord &workrecord) = 0; 74 void LocationRequest(WorkRecord &workrecord);
|
D | passive_ability_proxy.h | 36 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|
D | network_ability_proxy.h | 36 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|
D | gnss_ability_proxy.h | 33 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|
/base/location/test/location_passive/mock/include/ |
D | mock_passive_ability_stub.h | 38 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
|
/base/location/test/location_network/mock/include/ |
D | mock_network_ability_stub.h | 39 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
|
/base/location/services/location_locator/locator/source/ |
D | passive_ability_proxy.cpp | 31 LocationErrCode PassiveAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 40 workrecord.Marshalling(data); in SendLocationRequest()
|
D | network_ability_proxy.cpp | 31 LocationErrCode NetworkAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 40 workrecord.Marshalling(data); in SendLocationRequest()
|
D | gnss_ability_proxy.cpp | 30 LocationErrCode GnssAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 39 workrecord.Marshalling(data); in SendLocationRequest()
|
/base/location/services/location_gnss/gnss/source/ |
D | gnss_ability.cpp | 115 LocationErrCode GnssAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument 117 LocationRequest(workrecord); in SendLocationRequest() 636 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in SendMessage() local 638 Get(code, workrecord); in SendMessage() 693 std::unique_ptr<WorkRecord> workrecord = event->GetUniqueObject<WorkRecord>(); in ProcessEvent() local 694 if (workrecord != nullptr) { in ProcessEvent() 695 gnssAbility->LocationRequest(*workrecord); in ProcessEvent()
|
/base/location/services/location_passive/passive/include/ |
D | passive_ability.h | 55 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|
/base/location/test/location_gnss/mock/include/ |
D | mock_gnss_ability_stub.h | 51 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
|
/base/location/services/location_network/network/include/ |
D | network_ability.h | 58 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|
/base/location/services/location_gnss/gnss/include/ |
D | gnss_ability.h | 76 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
|