Home
last modified time | relevance | path

Searched refs:GetTransientTaskApps (Results 1 - 24 of 24) sorted by relevance

/foundation/resourceschedule/device_standby/services/common/src/
H A Dbackground_task_helper.cpp47 bool WEAK_FUNC BackgroundTaskHelper::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::DevStandbyMgr::BackgroundTaskHelper
50 if (BackgroundTaskMgrHelper::GetTransientTaskApps(list) != OHOS::ERR_OK) { in GetTransientTaskApps()
/foundation/resourceschedule/background_task_mgr/interfaces/innerkits/src/
H A Dbackground_task_mgr_helper.cpp59 ErrCode BackgroundTaskMgrHelper::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::BackgroundTaskMgr::BackgroundTaskMgrHelper
61 return DelayedSingleton<BackgroundTaskManager>::GetInstance()->GetTransientTaskApps(list); in GetTransientTaskApps()
/foundation/resourceschedule/device_standby/services/common/include/
H A Dbackground_task_helper.h50 bool GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list);
/foundation/resourceschedule/background_task_mgr/interfaces/innerkits/include/
H A Dbackground_task_mgr_helper.h82 static ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list);
/foundation/resourceschedule/background_task_mgr/frameworks/test/unittest/
H A Dbgtask_framework_abnormal_unit_test.cpp320 EXPECT_EQ(backgroundTaskMgrProxy.GetTransientTaskApps(list), ERR_BGTASK_PARCELABLE_FAILED); in HWTEST_F()
324 EXPECT_EQ(backgroundTaskMgrProxy.GetTransientTaskApps(list), ERR_BGTASK_TRANSACT_FAILED); in HWTEST_F()
328 EXPECT_EQ(backgroundTaskMgrProxy.GetTransientTaskApps(list), ERR_BGTASK_TRANSACT_FAILED); in HWTEST_F()
331 EXPECT_EQ(backgroundTaskMgrProxy.GetTransientTaskApps(list), ERR_BGTASK_TRANSACT_FAILED); in HWTEST_F()
H A Dbgtask_framework_unit_test.cpp230 * @tc.desc: test GetTransientTaskApps.
240 EXPECT_EQ(DelayedSingleton<BackgroundTaskManager>::GetInstance()->GetTransientTaskApps(list), in HWTEST_F()
244 DelayedSingleton<BackgroundTaskManager>::GetInstance()->GetTransientTaskApps(list); in HWTEST_F()
/foundation/resourceschedule/background_task_mgr/services/test/unittest/bgtask_manager_abnormal_unit_test/
H A Dbgtask_manager_abnormal_unit_test.cpp64 EXPECT_EQ(BackgroundTaskMgrService_->GetTransientTaskApps(list1), ERR_BGTASK_PERMISSION_DENIED); in HWTEST_F()
/foundation/resourceschedule/device_standby/services/test/unittest/mock/
H A Dmock_standby_helper_unit_test.cpp91 BackgroundTaskHelper::GetInstance()->GetTransientTaskApps(appInfoList); in HWTEST_F()
H A Dmock_helper.cpp129 bool BackgroundTaskHelper::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::DevStandbyMgr::BackgroundTaskHelper
/foundation/resourceschedule/background_task_mgr/frameworks/include/
H A Dbackground_task_manager.h123 ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list);
H A Dibackground_task_mgr.h125 virtual ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) = 0;
H A Dbackground_task_mgr_proxy.h117 ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) override;
/foundation/resourceschedule/device_standby/services/test/unittest/
H A Dstandby_helper_unit_test.cpp94 BackgroundTaskHelper::GetInstance()->GetTransientTaskApps(appInfoList); in HWTEST_F()
/foundation/resourceschedule/background_task_mgr/services/core/include/
H A Dbackground_task_mgr_service.h73 ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) override;
/foundation/resourceschedule/background_task_mgr/frameworks/src/
H A Dbackground_task_manager.cpp160 ErrCode BackgroundTaskManager::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::BackgroundTaskMgr::BackgroundTaskManager
165 return proxy_->GetTransientTaskApps(list); in GetTransientTaskApps()
H A Dbackground_task_mgr_stub.cpp323 ErrCode result = GetTransientTaskApps(appinfos); in HandleGetTransientTaskApps()
H A Dbackground_task_mgr_proxy.cpp342 ErrCode BackgroundTaskMgrProxy::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::BackgroundTaskMgr::BackgroundTaskMgrProxy
348 BGTASK_LOGE("GetTransientTaskApps write descriptor failed"); in GetTransientTaskApps()
355 BGTASK_LOGE("GetTransientTaskApps fail: transact ErrCode=%{public}d", result); in GetTransientTaskApps()
359 BGTASK_LOGE("GetTransientTaskApps fail: read result failed."); in GetTransientTaskApps()
367 BGTASK_LOGE("GetTransientTaskApps Read Parcelable infos failed."); in GetTransientTaskApps()
/foundation/resourceschedule/background_task_mgr/services/core/src/
H A Dbackground_task_mgr_service.cpp164 ErrCode BackgroundTaskMgrService::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::BackgroundTaskMgr::BackgroundTaskMgrService
167 BGTASK_LOGW("GetTransientTaskApps not allowed"); in GetTransientTaskApps()
170 return DelayedSingleton<BgTransientTaskMgr>::GetInstance()->GetTransientTaskApps(list); in GetTransientTaskApps()
/foundation/resourceschedule/background_task_mgr/services/transient_task/include/
H A Dbg_transient_task_mgr.h67 ErrCode GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list);
/foundation/resourceschedule/background_task_mgr/services/test/unittest/
H A Dbgtask_manager_unit_test.cpp392 * @tc.desc: test GetTransientTaskApps.
400 EXPECT_EQ(bgTransientTaskMgr_->GetTransientTaskApps(list), ERR_OK); in HWTEST_F()
404 EXPECT_EQ(bgTransientTaskMgr_->GetTransientTaskApps(list), ERR_OK); in HWTEST_F()
/foundation/resourceschedule/device_standby/plugins/strategy/src/
H A Dbase_network_strategy.cpp227 if (!BackgroundTaskHelper::GetInstance()->GetTransientTaskApps(transientTaskList)) { in GetBackgroundTaskApp()
231 STANDBYSERVICE_LOGD("succeed GetTransientTaskApps, size is %{public}d", in GetBackgroundTaskApp()
H A Drunning_lock_strategy.cpp284 if (!BackgroundTaskHelper::GetInstance()->GetTransientTaskApps(transientTaskList)) { in GetBackgroundTaskApp()
289 STANDBYSERVICE_LOGD("succeed GetTransientTaskApps, size is %{public}d", in GetBackgroundTaskApp()
/foundation/resourceschedule/background_task_mgr/interfaces/test/unittest/bgtask_manager_client_test/
H A Dbgtask_client_unit_test.cpp271 * @tc.desc: test GetTransientTaskApps interface.
278 BackgroundTaskMgrHelper::GetTransientTaskApps(list); in HWTEST_F()
/foundation/resourceschedule/background_task_mgr/services/transient_task/src/
H A Dbg_transient_task_mgr.cpp603 ErrCode BgTransientTaskMgr::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() function in OHOS::BackgroundTaskMgr::BgTransientTaskMgr

Completed in 14 milliseconds