Home
last modified time | relevance | path

Searched refs:ReportWorkSchedulerStatus (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/resourceschedule/device_standby/interfaces/innerkits/test/unittest/
H A Dmock_standby_client_unit_test.cpp65 StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(false, -1, "");
69 StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(true, -1, "");
93 proxy->ReportWorkSchedulerStatus(false, -1, "");
106 proxy->ReportWorkSchedulerStatus(false, -1, "");
H A Dstandby_client_unit_test.cpp206 EXPECT_EQ(StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(true, -1, ""), ERR_OK);
207 EXPECT_EQ(StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(false, -1, ""), ERR_OK);
/ohos5.0/foundation/resourceschedule/device_standby/interfaces/innerkits/src/
H A Dstandby_service_client.cpp139 ErrCode StandbyServiceClient::ReportWorkSchedulerStatus(bool started, int32_t uid, const std::strin… in ReportWorkSchedulerStatus() function in OHOS::DevStandbyMgr::StandbyServiceClient
146 return standbyServiceProxy_->ReportWorkSchedulerStatus(started, uid, bundleName); in ReportWorkSchedulerStatus()
H A Dstandby_service_proxy.cpp276 ErrCode StandbyServiceProxy::ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string… in ReportWorkSchedulerStatus() function in OHOS::DevStandbyMgr::StandbyServiceProxy
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/src/
H A Dwork_conn_manager.cpp175 DevStandbyMgr::StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(false, in StopWork()
223 DevStandbyMgr::StandbyServiceClient::GetInstance().ReportWorkSchedulerStatus(true, in WriteStartWorkEvent()
/ohos5.0/foundation/resourceschedule/device_standby/interfaces/innerkits/include/
H A Dstandby_service_proxy.h100 …ErrCode ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bundleName) overri…
H A Dstandby_service_client.h108 ErrCode ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bundleName);
/ohos5.0/foundation/resourceschedule/device_standby/frameworks/include/
H A Distandby_service.h108 …virtual ErrCode ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bundleName…
/ohos5.0/foundation/resourceschedule/device_standby/services/core/include/
H A Dstandby_service.h56 …ErrCode ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bundleName) overri…
H A Dstandby_service_impl.h109 ErrCode ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bundleName);
/ohos5.0/foundation/resourceschedule/device_standby/services/core/src/
H A Dstandby_service.cpp276 ErrCode StandbyService::ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string& bun… in ReportWorkSchedulerStatus() function in OHOS::DevStandbyMgr::StandbyService
282 return StandbyServiceImpl::GetInstance()->ReportWorkSchedulerStatus(started, uid, bundleName); in ReportWorkSchedulerStatus()
H A Dstandby_service_impl.cpp886 ErrCode StandbyServiceImpl::ReportWorkSchedulerStatus(bool started, int32_t uid, const std::string&… in ReportWorkSchedulerStatus() function in OHOS::DevStandbyMgr::StandbyServiceImpl
/ohos5.0/foundation/resourceschedule/device_standby/services/test/unittest/
H A Dstandby_service_unit_test.cpp203 StandbyService::GetInstance()->ReportWorkSchedulerStatus(true, -1, "");
212 StandbyService::GetInstance()->ReportWorkSchedulerStatus(true, -1, "");
242 StandbyServiceImpl::GetInstance()->ReportWorkSchedulerStatus(true, -1, "");
245 StandbyServiceImpl::GetInstance()->ReportWorkSchedulerStatus(true, -1, "");
/ohos5.0/foundation/resourceschedule/device_standby/frameworks/src/
H A Dstandby_service_stub.cpp114 ErrCode result = ReportWorkSchedulerStatus(started, uid, bundleName); in HandleReportWorkSchedulerStatus()