Home
last modified time | relevance | path

Searched refs:DumpIpcStart (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H A Ddump_ipc_helper.h29 static void DumpIpcStart(std::string& result);
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_dump_ipc_test/mock/include/
H A Dmock_app_mgr_service_inner.h34 MOCK_METHOD2(DumpIpcStart, int(const int32_t pid, std::string& result));
/ohos5.0/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Ddump_ipc_helper_test.cpp62 DumpIpcHelper::DumpIpcStart(result);
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_lifecycle_deal.h228 int DumpIpcStart(std::string& result);
H A Dapp_running_manager.h332 int DumpIpcStart(const int32_t pid, std::string& result);
H A Dapp_mgr_service.h676 int DumpIpcStart(const int32_t pid, std::string& result);
H A Dapp_running_record.h801 int DumpIpcStart(std::string& result);
H A Dapp_mgr_service_inner.h1176 virtual int DumpIpcStart(const int32_t pid, std::string& result);
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H A Ddump_ipc_helper.cpp30 void DumpIpcHelper::DumpIpcStart(std::string& result) in DumpIpcStart() function in OHOS::AppExecFwk::DumpIpcHelper
H A Dmain_thread.cpp3430 DumpIpcHelper::DumpIpcStart(result); in ScheduleDumpIpcStart()
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_lifecycle_deal.cpp338 int AppLifeCycleDeal::DumpIpcStart(std::string& result) in DumpIpcStart() function in OHOS::AppExecFwk::AppLifeCycleDeal
H A Dapp_mgr_service.cpp775 return DumpIpcStart(pid, result); in DumpIpcWithPidInner()
920 int AppMgrService::DumpIpcStart(const int32_t pid, std::string& result) in DumpIpcStart() function in OHOS::AppExecFwk::AppMgrService
923 return appMgrServiceInner_->DumpIpcStart(pid, result); in DumpIpcStart()
H A Dapp_running_manager.cpp1490 errCode = appRecord->DumpIpcStart(currentResult); in DumpIpcAllStart()
1535 int AppRunningManager::DumpIpcStart(const int32_t pid, std::string& result) in DumpIpcStart() function in OHOS::AppExecFwk::AppRunningManager
1546 return appRecord->DumpIpcStart(result); in DumpIpcStart()
H A Dapp_running_record.cpp2348 int AppRunningRecord::DumpIpcStart(std::string& result) in DumpIpcStart() function in OHOS::AppExecFwk::AppRunningRecord
2358 return appLifeCycleDeal_->DumpIpcStart(result); in DumpIpcStart()
H A Dapp_mgr_service_inner.cpp7201 int AppMgrServiceInner::DumpIpcStart(const int32_t pid, std::string& result) in NotifyAppFaultBySA() function in OHOS::AppExecFwk::AppMgrServiceInner
7211 return appRunningManager_->DumpIpcStart(pid, result); in NotifyAppFaultBySA()
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_dump_ipc_test/
H A Dapp_mgr_service_dump_ipc_test.cpp220 EXPECT_CALL(*mockAppMgrServiceInner, DumpIpcStart(NUMBER_VALID_PID, _))
342 EXPECT_CALL(*mockAppMgrServiceInner, DumpIpcStart(NUMBER_INVALID_PID, _))
/ohos5.0/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/
H A Dabilityappmgrapprunningmanager_fuzzer.cpp156 manager->DumpIpcStart(pidDump, jsonStr); in DoSomethingInterestingWithMyAPIaddc()