Home
last modified time | relevance | path

Searched refs:workrecord (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/base/location/test/location_locator/source/
H A Dwork_record_test.cpp45 workrecord->Marshalling(parcel); in VerifyMarshalling()
75 VerifyMarshalling(workrecord);
76 EXPECT_EQ(1, workrecord->Size());
164 workrecord->Clear();
216 workrecord->Add(request);
219 workrecord->Add(request);
282 workrecord->num_ = 1;
283 workrecord->uuid_.clear();
290 workrecord->num_ = 1;
294 workrecord->num_ = 1;
[all …]
/ohos5.0/base/location/services/location_network/network/source/
H A Dnetwork_ability.cpp214 LocationErrCode NetworkAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
216 LocationRequest(workrecord); in SendLocationRequest()
478 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in SendMessage() local
479 AppExecFwk::InnerEvent::Pointer event = AppExecFwk::InnerEvent::Get(code, workrecord); in SendMessage()
607 std::unique_ptr<WorkRecord> workrecord = event->GetUniqueObject<WorkRecord>(); in ProcessEvent() local
608 if (workrecord != nullptr) { in ProcessEvent()
609 networkAbility->LocationRequest(*workrecord); in ProcessEvent()
/ohos5.0/base/location/services/location_locator/locator/include/
H A Dsubability_common.h33 virtual LocationErrCode SendLocationRequest(WorkRecord &workrecord) = 0;
46 void LocationRequest(WorkRecord &workrecord);
H A Dnetwork_ability_proxy.h37 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
H A Dpassive_ability_proxy.h37 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
H A Dgnss_ability_proxy.h34 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
/ohos5.0/base/location/services/location_locator/locator/source/
H A Dnetwork_ability_proxy.cpp33 LocationErrCode NetworkAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
42 workrecord.Marshalling(data); in SendLocationRequest()
H A Dpassive_ability_proxy.cpp33 LocationErrCode PassiveAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
42 workrecord.Marshalling(data); in SendLocationRequest()
H A Dgnss_ability_proxy.cpp32 LocationErrCode GnssAbilityProxy::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
41 workrecord.Marshalling(data); in SendLocationRequest()
/ohos5.0/base/location/services/location_passive/passive/source/
H A Dpassive_ability_skeleton.cpp70 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in SendLocationRequestInner() local
71 reply.WriteInt32(SendLocationRequest(*workrecord)); in SendLocationRequestInner()
H A Dpassive_ability.cpp93 LocationErrCode PassiveAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
95 LocationRequest(workrecord); in SendLocationRequest()
/ohos5.0/base/location/test/location_locator/include/
H A Dwork_record_test.h29 void VerifyMarshalling(std::unique_ptr<WorkRecord>& workrecord);
/ohos5.0/base/location/test/location_network/mock/include/
H A Dmock_network_ability_stub.h39 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
/ohos5.0/base/location/test/location_passive/mock/include/
H A Dmock_passive_ability_stub.h39 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
/ohos5.0/base/location/services/location_passive/passive/include/
H A Dpassive_ability.h57 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
/ohos5.0/base/location/test/location_gnss/mock/include/
H A Dmock_gnss_ability_stub.h57 MOCK_METHOD(LocationErrCode, SendLocationRequest, (WorkRecord &workrecord));
/ohos5.0/base/location/services/location_network/network/include/
H A Dnetwork_ability.h67 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
/ohos5.0/base/location/services/location_gnss/gnss/source/
H A Dgnss_ability.cpp181 LocationErrCode GnssAbility::SendLocationRequest(WorkRecord &workrecord) in SendLocationRequest() argument
183 LocationRequest(workrecord); in SendLocationRequest()
1501 std::unique_ptr<WorkRecord> workrecord = WorkRecord::Unmarshalling(data); in SendMessage() local
1503 Get(code, workrecord); in SendMessage()
1688 std::unique_ptr<WorkRecord> workrecord = event->GetUniqueObject<WorkRecord>(); in HandleSendLocationRequest() local
1689 if (workrecord != nullptr) { in HandleSendLocationRequest()
1690 gnssAbility->LocationRequest(*workrecord); in HandleSendLocationRequest()
/ohos5.0/base/location/services/location_gnss/gnss/include/
H A Dgnss_ability.h159 LocationErrCode SendLocationRequest(WorkRecord &workrecord) override;
/ohos5.0/base/location/test/location_gnss/source/
H A Dgnss_ability_test.cpp1303 WorkRecord workrecord; variable
1304 ability_->SendLocationRequest(workrecord);