Home
last modified time | relevance | path

Searched refs:GetProcessMemoryByPid (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_mgr_interface.h532 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) = 0;
H A Dapp_mgr_proxy.h468 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 Dmock_app_mgr_service.h73 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 Dmock_app_mgr_service.h91 MOCK_METHOD2(GetProcessMemoryByPid, int32_t(const int32_t pid, int32_t & memorySize));
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_mgr_service.h454 virtual int32_t GetProcessMemoryByPid(const int32_t pid, int32_t &memorySize) override;
H A Dapp_mgr_service_inner.h913 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 Djs_app_manager.cpp164 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 Dapp_mgr_stub_test.cpp251 EXPECT_CALL(*mockAppMgrService_, GetProcessMemoryByPid(_, _)).Times(1);
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/
H A Dapp_mgr_proxy_test.cpp296 appMgrProxy_->GetProcessMemoryByPid(pid, memorySize);
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_mgr_service.cpp1259 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 Dapp_mgr_service_inner.cpp6290 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 Dapp_mgr_service_test.cpp1246 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 Dapp_mgr_stub.cpp1205 auto result = GetProcessMemoryByPid(pid, memorySize); in HandleGetProcessMemoryByPid()
H A Dapp_mgr_proxy.cpp1355 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 Dapp_mgr_service_inner_test.cpp3349 int32_t ret = appMgrServiceInner->GetProcessMemoryByPid(pid, memorySize);