/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_scheduler_client.h | 62 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_app_scheduler.h | 62 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_app_mgr_service_inner.h | 71 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_ams_mgr_scheduler.h | 64 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_application_proxy.h | 56 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_application.h | 55 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | ams_mgr_interface.h | 340 * @param debugInfoList The debug info list, including bundle name and persist flag. 343 virtual int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) = 0;
|
H A D | ams_mgr_proxy.h | 302 * @param debugInfoList The debug info list, including bundle name and persist flag. 305 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) override;
|
H A D | app_mgr_client.h | 638 * @param debugInfoList The debug bundle info list, including bundle name and persist flag. 641 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList);
|
/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | ams_mgr_scheduler.h | 334 * @param debugInfoList The debug info list, including bundle name and persist flag. 337 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) override;
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | ams_mgr_stub.cpp | 663 std::vector<std::string> debugInfoList; in HandleGetWaitingDebugApp() local 664 auto result = GetWaitingDebugApp(debugInfoList); in HandleGetWaitingDebugApp() 670 int32_t listSize = static_cast<int32_t>(debugInfoList.size()); in HandleGetWaitingDebugApp() 681 if (!reply.WriteStringVector(debugInfoList)) { in HandleGetWaitingDebugApp()
|
H A D | ams_mgr_proxy.cpp | 1013 int32_t AmsMgrProxy::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 1042 if (!reply.ReadStringVector(&debugInfoList)) { in GetWaitingDebugApp()
|
H A D | app_mgr_client.cpp | 1010 int32_t AppMgrClient::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 1016 return amsService_->GetWaitingDebugApp(debugInfoList); in GetWaitingDebugApp()
|
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_test/ |
H A D | ams_mgr_scheduler_test.cpp | 1260 std::vector<std::string> debugInfoList; in HWTEST_F() local 1261 auto iret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList); in HWTEST_F() 1279 std::vector<std::string> debugInfoList; in HWTEST_F() local 1280 auto iret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList); in HWTEST_F()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | ams_mgr_scheduler.cpp | 562 int32_t AmsMgrScheduler::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 568 return amsMgrServiceInner_->GetWaitingDebugApp(debugInfoList); in GetWaitingDebugApp()
|
H A D | app_mgr_service_inner.cpp | 6558 int32_t AppMgrServiceInner::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in NotifyAppFaultBySA() argument 6583 debugInfoList.emplace_back(debugBundleInfo); in NotifyAppFaultBySA()
|
/foundation/ability/ability_runtime/tools/aa/src/ |
H A D | ability_command.cpp | 762 std::vector<std::string> debugInfoList; in RunAsAppDebugDebugCommand() local 764 result = DelayedSingleton<AppMgrClient>::GetInstance()->GetWaitingDebugApp(debugInfoList); in RunAsAppDebugDebugCommand() 782 if (isGet && !debugInfoList.empty()) { in RunAsAppDebugDebugCommand() 783 for (auto it : debugInfoList) { in RunAsAppDebugDebugCommand()
|
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_second_test/ |
H A D | ams_mgr_scheduler_second_test.cpp | 1486 std::vector<std::string> debugInfoList; in HWTEST_F() local 1487 auto ret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList); in HWTEST_F() 1510 std::vector<std::string> debugInfoList; in HWTEST_F() local 1511 auto ret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/ |
H A D | app_mgr_client_test.cpp | 1210 std::vector<std::string> debugInfoList; in HWTEST_F() local 1211 appMgrClient->GetWaitingDebugApp(debugInfoList); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_test/ |
H A D | app_mgr_service_inner_test.cpp | 3626 std::vector<std::string> debugInfoList; in HWTEST_F() local 3627 auto result = appMgrServiceInner->GetWaitingDebugApp(debugInfoList); in HWTEST_F()
|