/foundation/resourceschedule/work_scheduler/interfaces/kits/js/napi/include/ |
H A D | obtain_all_works.h | 22 napi_value ObtainAllWorks(napi_env env, napi_callback_info info);
|
/foundation/resourceschedule/work_scheduler/interfaces/kits/js/napi/src/ |
H A D | obtain_all_works.cpp | 53 napi_value ObtainAllWorks(napi_env env, napi_callback_info info) in ObtainAllWorks() function 72 NAPI_CALL(env, napi_create_string_latin1(env, "ObtainAllWorks", NAPI_AUTO_LENGTH, &resourceName)); in ObtainAllWorks() 78 WorkSchedulerSrvClient::GetInstance().ObtainAllWorks(asyncCallbackInfo->workInfoList); in ObtainAllWorks()
|
H A D | init.cpp | 48 DECLARE_NAPI_FUNCTION("obtainAllWorks", ObtainAllWorks), in InitApi()
|
/foundation/resourceschedule/work_scheduler/frameworks/include/ |
H A D | workscheduler_srv_client.h | 81 ErrCode ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>> &workInfos);
|
H A D | iwork_sched_service.h | 75 virtual int32_t ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) = 0;
|
/foundation/resourceschedule/work_scheduler/services/zidl/include/ |
H A D | work_sched_service_proxy.h | 76 int32_t ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) override;
|
/foundation/resourceschedule/work_scheduler/frameworks/src/ |
H A D | workscheduler_srv_client.cpp | 138 ErrCode WorkSchedulerSrvClient::ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>> &workInfos) in ObtainAllWorks() function in OHOS::WorkScheduler::WorkSchedulerSrvClient 146 return iWorkSchedService_->ObtainAllWorks(workInfos); in ObtainAllWorks()
|
/foundation/resourceschedule/work_scheduler/frameworks/test/unittest/src/ |
H A D | work_sched_client_test.cpp | 121 * @tc.desc: Test ObtainAllWorks
128 ErrCode ret = WorkSchedulerSrvClient::GetInstance().ObtainAllWorks(workInfos);
in HWTEST_F()
|
/foundation/resourceschedule/work_scheduler/services/native/include/ |
H A D | work_scheduler_service.h | 102 int32_t ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) override;
|
H A D | work_policy_manager.h | 127 std::list<std::shared_ptr<WorkInfo>> ObtainAllWorks(int32_t &uid);
|
/foundation/resourceschedule/work_scheduler/interfaces/kits/cj/work_scheduler/ |
H A D | work_scheduler_ffi.cpp | 68 ErrCode errCode = WorkSchedulerSrvClient::GetInstance().ObtainAllWorks(workInfoList); in CJ_ObtainAllWorks()
|
/foundation/resourceschedule/work_scheduler/services/zidl/src/ |
H A D | work_sched_service_stub.cpp | 192 return ObtainAllWorks(workInfos); in ObtainAllWorksStub()
|
H A D | work_sched_service_proxy.cpp | 171 int32_t WorkSchedServiceProxy::ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) in ObtainAllWorks() function in OHOS::WorkScheduler::WorkSchedServiceProxy 196 WS_HILOGD("ObtainAllWorks worksize from read parcel is: %{public}d", worksize); in ObtainAllWorks()
|
/foundation/resourceschedule/work_scheduler/services/test/src/ |
H A D | workschedulerservice_test.cpp | 113 int32_t ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) { return 0; }
in ObtainAllWorks() function in OHOS::WorkScheduler::MyWorkSchedulerService 252 * @tc.desc: Test WorkSchedulerService ObtainAllWorks.
259 auto ret = workSchedulerService_->ObtainAllWorks(workInfos);
in HWTEST_F()
|
/foundation/resourceschedule/work_scheduler/services/native/src/ |
H A D | work_scheduler_service.cpp | 758 int32_t WorkSchedulerService::ObtainAllWorks(std::list<std::shared_ptr<WorkInfo>>& workInfos) in ObtainAllWorks() function in OHOS::WorkScheduler::WorkSchedulerService 760 HitraceScoped traceScoped(HITRACE_TAG_OHOS, "WorkSchedulerService::ObtainAllWorks"); in ObtainAllWorks() 766 workInfos = workPolicyManager_->ObtainAllWorks(uid); in ObtainAllWorks()
|
H A D | work_policy_manager.cpp | 503 list<shared_ptr<WorkInfo>> WorkPolicyManager::ObtainAllWorks(int32_t &uid) in ObtainAllWorks() function in OHOS::WorkScheduler::WorkPolicyManager
|