Searched refs:procLevelMap (Results 1 – 16 of 16) sorted by relevance
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | memory_level_info.cpp | 26 …fo::MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap) : procLevelMap_(procLevelMap) in MemoryLevelInfo() argument
|
H A D | app_mgr_client.cpp | 505 …ultCode AppMgrClient::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const in NotifyProcMemoryLevel() 513 return AppMgrResultCode(service->NotifyProcMemoryLevel(procLevelMap)); in NotifyProcMemoryLevel()
|
H A D | app_mgr_proxy.cpp | 410 int32_t AppMgrProxy::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 419 MemoryLevelInfo memoryLevelInfo(procLevelMap); in NotifyProcMemoryLevel()
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | memory_level_info.h | 32 MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
H A D | app_mgr_interface.h | 268 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) = 0;
|
H A D | app_mgr_client.h | 309 …virtual AppMgrResultCode NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) c…
|
H A D | app_mgr_proxy.h | 242 … virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
|
/ohos5.0/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/ |
H A D | abilityappmgrapprunningmanager_fuzzer.cpp | 205 std::map<pid_t, MemoryLevel> procLevelMap; in DoSomethingInterestingWithMyAPI() local 206 manager->NotifyProcMemoryLevel(procLevelMap); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_running_manager.h | 212 int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
H A D | app_mgr_service.h | 270 … virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
|
H A D | app_mgr_service_inner.h | 460 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
/ohos5.0/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/ |
H A D | mock_app_mgr_service.h | 43 MOCK_METHOD1(NotifyProcMemoryLevel, int32_t(const std::map<pid_t, MemoryLevel> &procLevelMap));
|
/ohos5.0/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_mgr_service.h | 37 MOCK_METHOD1(NotifyProcMemoryLevel, int32_t(const std::map<pid_t, MemoryLevel> &procLevelMap));
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_running_manager.cpp | 899 int32_t AppRunningManager::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 917 auto it = procLevelMap.find(pid); in NotifyProcMemoryLevel() 918 if (it == procLevelMap.end()) { in NotifyProcMemoryLevel()
|
H A D | app_mgr_service.cpp | 520 int32_t AppMgrService::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 525 return appMgrServiceInner_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|
H A D | app_mgr_service_inner.cpp | 2112 int32_t AppMgrServiceInner::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 2127 return appRunningManager_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|