Home
last modified time | relevance | path

Searched refs:procLevelMap (Results 1 - 20 of 20) sorted by relevance

/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dmemory_level_info.cpp26 MemoryLevelInfo::MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap) : procLevelMap_(procLevelMap) in MemoryLevelInfo() argument
H A Dapp_mgr_proxy.cpp395 int32_t AppMgrProxy::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
404 MemoryLevelInfo memoryLevelInfo(procLevelMap); in NotifyProcMemoryLevel()
H A Dapp_mgr_client.cpp495 AppMgrResultCode AppMgrClient::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const in NotifyProcMemoryLevel()
503 return AppMgrResultCode(service->NotifyProcMemoryLevel(procLevelMap)); in NotifyProcMemoryLevel()
/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.h253 * @param procLevelMap ,<pid, level> map
256 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) = 0;
H A Dapp_mgr_client.h303 * @param procLevelMap ,<pid, level> map;
306 virtual AppMgrResultCode NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const;
H A Dapp_mgr_proxy.h229 * @param procLevelMap ,<pid, level> map;
232 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_first_test/
H A Dapp_mgr_client_first_test.cpp132 std::map<pid_t, MemoryLevel> procLevelMap = {}; in HWTEST_F() local
133 auto result = appMgrClient->NotifyProcMemoryLevel(procLevelMap); in HWTEST_F()
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/
H A Dabilityappmgrapprunningmanager_fuzzer.cpp207 std::map<pid_t, MemoryLevel> procLevelMap; in DoSomethingInterestingWithMyAPI() local
208 manager->NotifyProcMemoryLevel(procLevelMap); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_running_manager.h209 * @param procLevelMap , <pid_t, MemoryLevel>.
212 int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
H A Dapp_mgr_service.h257 * @param procLevelMap , <pid_t, MemoryLevel> map.
260 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
H A Dapp_mgr_service_inner.h454 * @param procLevelMap , <pid_t, MemoryLevel>.
458 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
/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));
/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));
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/
H A Dmock_app_mgr_service.h36 MOCK_METHOD1(NotifyProcMemoryLevel, int32_t(const std::map<pid_t, MemoryLevel> &procLevelMap));
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/
H A Dapp_mgr_client_test.cpp732 std::map<pid_t, MemoryLevel> procLevelMap; in HWTEST_F() local
733 appMgrClient->NotifyProcMemoryLevel(procLevelMap); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/app_running_manager_second_test/
H A Dapp_running_manager_second_test.cpp469 std::map<pid_t, MemoryLevel> procLevelMap; in HWTEST_F() local
470 auto ret = appRunningManager->NotifyProcMemoryLevel(procLevelMap); in HWTEST_F()
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_running_manager.cpp907 int32_t AppRunningManager::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
925 auto it = procLevelMap.find(pid); in NotifyProcMemoryLevel()
926 if (it == procLevelMap.end()) { in NotifyProcMemoryLevel()
H A Dapp_mgr_service.cpp495 int32_t AppMgrService::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
500 return appMgrServiceInner_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
H A Dapp_mgr_service_inner.cpp2171 int32_t AppMgrServiceInner::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument
2186 return appRunningManager_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()

Completed in 38 milliseconds