/ohos5.0/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_scheduler.h | 62 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));
|
H A D | mock_ams_mgr_scheduler.h | 68 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
H A D | mock_app_mgr_service_inner.h | 74 MOCK_METHOD1(GetWaitingDebugApp, int32_t(std::vector<std::string> &debugInfoList));
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | ams_mgr_stub.cpp | 705 std::vector<std::string> debugInfoList; in HandleGetWaitingDebugApp() local 706 auto result = GetWaitingDebugApp(debugInfoList); in HandleGetWaitingDebugApp() 712 int32_t listSize = static_cast<int32_t>(debugInfoList.size()); in HandleGetWaitingDebugApp() 723 if (!reply.WriteStringVector(debugInfoList)) { in HandleGetWaitingDebugApp()
|
H A D | ams_mgr_proxy.cpp | 1082 int32_t AmsMgrProxy::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 1111 if (!reply.ReadStringVector(&debugInfoList)) { in GetWaitingDebugApp()
|
H A D | app_mgr_client.cpp | 1021 int32_t AppMgrClient::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 1027 return amsService_->GetWaitingDebugApp(debugInfoList); in GetWaitingDebugApp()
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | ams_mgr_scheduler.h | 278 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) override;
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | ams_mgr_interface.h | 304 virtual int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) = 0;
|
H A D | ams_mgr_proxy.h | 266 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList) override;
|
H A D | app_mgr_client.h | 645 int32_t GetWaitingDebugApp(std::vector<std::string> &debugInfoList);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_test/ |
H A D | ams_mgr_scheduler_test.cpp | 1349 std::vector<std::string> debugInfoList; variable 1350 auto iret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList); 1368 std::vector<std::string> debugInfoList; variable 1369 auto iret = amsMgrScheduler->GetWaitingDebugApp(debugInfoList);
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | ams_mgr_scheduler.cpp | 592 int32_t AmsMgrScheduler::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in GetWaitingDebugApp() argument 598 return amsMgrServiceInner_->GetWaitingDebugApp(debugInfoList); in GetWaitingDebugApp()
|
H A D | app_mgr_service_inner.cpp | 6505 int32_t AppMgrServiceInner::GetWaitingDebugApp(std::vector<std::string> &debugInfoList) in NotifyAppFaultBySA() argument 6530 debugInfoList.emplace_back(debugBundleInfo); in NotifyAppFaultBySA()
|
/ohos5.0/foundation/ability/ability_runtime/tools/aa/src/ |
H A D | ability_command.cpp | 761 std::vector<std::string> debugInfoList; in RunAsAppDebugDebugCommand() local 763 result = DelayedSingleton<AppMgrClient>::GetInstance()->GetWaitingDebugApp(debugInfoList); in RunAsAppDebugDebugCommand() 781 if (isGet && !debugInfoList.empty()) { in RunAsAppDebugDebugCommand() 782 for (auto it : debugInfoList) { in RunAsAppDebugDebugCommand()
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/ |
H A D | app_mgr_client_test.cpp | 1183 std::vector<std::string> debugInfoList; variable 1184 appMgrClient->GetWaitingDebugApp(debugInfoList);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_test/ |
H A D | app_mgr_service_inner_test.cpp | 3641 std::vector<std::string> debugInfoList; variable 3642 auto result = appMgrServiceInner->GetWaitingDebugApp(debugInfoList);
|