Home
last modified time | relevance | path

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 Dmemory_level_info.cpp26 …fo::MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap) : procLevelMap_(procLevelMap) in MemoryLevelInfo() argument
H A Dapp_mgr_client.cpp505 …ultCode AppMgrClient::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const in NotifyProcMemoryLevel()
513 return AppMgrResultCode(service->NotifyProcMemoryLevel(procLevelMap)); in NotifyProcMemoryLevel()
H A Dapp_mgr_proxy.cpp410 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 Dmemory_level_info.h32 MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap);
H A Dapp_mgr_interface.h268 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) = 0;
H A Dapp_mgr_client.h309 …virtual AppMgrResultCode NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) c…
H A Dapp_mgr_proxy.h242 … virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
/ohos5.0/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/
H A Dabilityappmgrapprunningmanager_fuzzer.cpp205 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 Dapp_running_manager.h212 int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
H A Dapp_mgr_service.h270 … virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
H A Dapp_mgr_service_inner.h460 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 Dmock_app_mgr_service.h43 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 Dmock_app_mgr_service.h37 MOCK_METHOD1(NotifyProcMemoryLevel, int32_t(const std::map<pid_t, MemoryLevel> &procLevelMap));
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_running_manager.cpp899 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 Dapp_mgr_service.cpp520 int32_t AppMgrService::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
525 return appMgrServiceInner_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
H A Dapp_mgr_service_inner.cpp2112 int32_t AppMgrServiceInner::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
2127 return appRunningManager_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()