/foundation/resourceschedule/device_standby/services/core/src/ |
H A D | app_mgr_helper.cpp | 57 bool WEAK_FUNC AppMgrHelper::GetAppRunningStateByBundleName(const std::string &bundleName, bool& isRunning) in GetAppRunningStateByBundleName() function in OHOS::DevStandbyMgr::AppMgrHelper 63 isRunning = appMgrProxy_->GetAppRunningStateByBundleName(bundleName); in GetAppRunningStateByBundleName()
|
H A D | app_state_observer.cpp | 46 if (!AppMgrHelper::GetInstance()->GetAppRunningStateByBundleName(bundleName, isRunning)) { in CheckAlivedApp()
|
/foundation/resourceschedule/device_standby/services/core/include/ |
H A D | app_mgr_helper.h | 47 bool GetAppRunningStateByBundleName(const std::string &bundleName, bool& isRunning);
|
/foundation/resourceschedule/device_standby/services/test/unittest/mock/ |
H A D | mock_standby_helper_unit_test.cpp | 49 AppMgrHelper::GetInstance()->GetAppRunningStateByBundleName("", isRunning); in HWTEST_F()
|
H A D | mock_helper.cpp | 97 bool AppMgrHelper::GetAppRunningStateByBundleName(const std::string &bundleName, bool& isRunning) in GetAppRunningStateByBundleName() function in OHOS::DevStandbyMgr::AppMgrHelper
|
/foundation/resourceschedule/device_standby/services/test/unittest/ |
H A D | standby_helper_unit_test.cpp | 60 AppMgrHelper::GetInstance()->GetAppRunningStateByBundleName("", isRunning); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/fuzztest/appmgrservicefirst_fuzzer/ |
H A D | appmgrservicefirst_fuzzer.cpp | 128 appMgrService->GetAppRunningStateByBundleName(bundleName); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_running_manager.h | 271 bool GetAppRunningStateByBundleName(const std::string &bundleName);
|
H A D | app_mgr_service.h | 464 bool GetAppRunningStateByBundleName(const std::string &bundleName) override;
|
H A D | app_mgr_service_inner.h | 868 bool GetAppRunningStateByBundleName(const std::string &bundleName);
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_mgr_interface.h | 452 virtual bool GetAppRunningStateByBundleName(const std::string &bundleName) = 0;
|
H A D | app_mgr_proxy.h | 422 bool GetAppRunningStateByBundleName(const std::string &bundleName) override;
|
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_mgr_service.h | 80 MOCK_METHOD1(GetAppRunningStateByBundleName, bool(const std::string& bundleName));
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/ |
H A D | mock_app_mgr_service.h | 64 MOCK_METHOD1(GetAppRunningStateByBundleName, bool(const std::string& bundleName));
|
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/ |
H A D | abilityappmgrapprunningmanager_fuzzer.cpp | 102 manager->GetAppRunningStateByBundleName(jsonStr); in DoSomethingInterestingWithMyAPIadda()
|
/foundation/ability/ability_runtime/test/unittest/appkit/main_fourth_test/ |
H A D | main_fourth_test.cpp | 222 bool GetAppRunningStateByBundleName(const std::string &bundleName) override
|
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/ |
H A D | mock_app_mgr_service.h | 79 MOCK_METHOD1(GetAppRunningStateByBundleName, bool(const std::string& bundleName));
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_stub_test/ |
H A D | app_mgr_stub_test.cpp | 134 EXPECT_CALL(*mockAppMgrService_, GetAppRunningStateByBundleName(_)).Times(1); in HWTEST_F()
|
/foundation/resourceschedule/device_standby/plugins/strategy/src/ |
H A D | base_network_strategy.cpp | 436 if (AppMgrHelper::GetInstance()->GetAppRunningStateByBundleName(bundleName, isRunning) && !isRunning) { in HandleProcessStatusChanged()
|
/foundation/ability/ability_runtime/services/quickfixmgr/src/ |
H A D | quick_fix_manager_apply_task.cpp | 609 auto ret = appMgr_->GetAppRunningStateByBundleName(bundleName_); in GetRunningState()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/ |
H A D | app_mgr_proxy_test.cpp | 184 appMgrProxy_->GetAppRunningStateByBundleName(bundleName); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_service_test/ |
H A D | app_mgr_service_test.cpp | 1041 * Function: GetAppRunningStateByBundleName 1043 * FunctionPoints: AppMgrService GetAppRunningStateByBundleName 1045 * CaseDescription: Verify GetAppRunningStateByBundleName 1052 bool res = appMgrService->GetAppRunningStateByBundleName(bundleName); in HWTEST_F() 1058 * Function: GetAppRunningStateByBundleName 1060 * FunctionPoints: AppMgrService GetAppRunningStateByBundleName 1062 * CaseDescription: Verify GetAppRunningStateByBundleName 1071 bool res = appMgrService->GetAppRunningStateByBundleName(bundleName); in HWTEST_F()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_mgr_service.cpp | 1066 bool AppMgrService::GetAppRunningStateByBundleName(const std::string &bundleName) in GetAppRunningStateByBundleName() function in OHOS::AppExecFwk::AppMgrService 1073 return appMgrServiceInner_->GetAppRunningStateByBundleName(bundleName); in GetAppRunningStateByBundleName()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | free_install_manager.cpp | 643 bool isAppRunning = appMgr->GetAppRunningStateByBundleName(want.GetElement().GetBundleName()); in SetAppRunningState()
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | app_mgr_stub.cpp | 1004 auto ret = GetAppRunningStateByBundleName(bundleName); in HandleGetAppRunningStateByBundleName()
|