/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_mgr_interface.h | 532 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) = 0;
|
H A D | app_mgr_proxy.h | 468 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) override;
|
/ohos5.0/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/ |
H A D | mock_app_mgr_service.h | 73 MOCK_METHOD2(GetProcessMemoryByPid, int32_t(const int32_t pid, int32_t & memorySize));
|
/ohos5.0/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_mgr_service.h | 91 MOCK_METHOD2(GetProcessMemoryByPid, int32_t(const int32_t pid, int32_t & memorySize));
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_mgr_service.h | 454 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) override;
|
H A D | app_mgr_service_inner.h | 913 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize);
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/app/js_app_manager/ |
H A D | js_app_manager.cpp | 164 static napi_value GetProcessMemoryByPid(napi_env env, napi_callback_info info) in GetProcessMemoryByPid() function in OHOS::AbilityRuntime::__anonf4da04950110::JsAppManager 1245 int32_t ret = appManager->GetProcessMemoryByPid(pid, memSize); in OnGetProcessMemoryByPid() 1613 …Function(env, exportObj, "getProcessMemoryByPid", moduleName, JsAppManager::GetProcessMemoryByPid); in JsAppManagerInit()
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_stub_test/ |
H A D | app_mgr_stub_test.cpp | 251 EXPECT_CALL(*mockAppMgrService_, GetProcessMemoryByPid(_, _)).Times(1);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/ |
H A D | app_mgr_proxy_test.cpp | 296 appMgrProxy_->GetProcessMemoryByPid(pid, memorySize);
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_mgr_service.cpp | 1259 int32_t AppMgrService::GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) in GetProcessMemoryByPid() function in OHOS::AppExecFwk::AppMgrService 1266 return appMgrServiceInner_->GetProcessMemoryByPid(pid, memorySize); in GetProcessMemoryByPid()
|
H A D | app_mgr_service_inner.cpp | 6290 int32_t AppMgrServiceInner::GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) in NotifyAppFaultBySA() function in OHOS::AppExecFwk::AppMgrServiceInner
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_test/ |
H A D | app_mgr_service_test.cpp | 1246 int32_t res = appMgrService->GetProcessMemoryByPid(pid, memorySize); 1269 int32_t res = appMgrService->GetProcessMemoryByPid(pid, memorySize);
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | app_mgr_stub.cpp | 1205 auto result = GetProcessMemoryByPid(pid, memorySize); in HandleGetProcessMemoryByPid()
|
H A D | app_mgr_proxy.cpp | 1355 int32_t AppMgrProxy::GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) in GetProcessMemoryByPid() function in OHOS::AppExecFwk::AppMgrProxy
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_test/ |
H A D | app_mgr_service_inner_test.cpp | 3349 int32_t ret = appMgrServiceInner->GetProcessMemoryByPid(pid, memorySize);
|