/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | memory_level_info.cpp | 26 MemoryLevelInfo::MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap) : procLevelMap_(procLevelMap) in MemoryLevelInfo() argument
|
H A D | app_mgr_proxy.cpp | 395 int32_t AppMgrProxy::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 404 MemoryLevelInfo memoryLevelInfo(procLevelMap); in NotifyProcMemoryLevel()
|
H A D | app_mgr_client.cpp | 495 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 D | memory_level_info.h | 32 MemoryLevelInfo(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
H A D | app_mgr_interface.h | 253 * @param procLevelMap ,<pid, level> map 256 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) = 0;
|
H A D | app_mgr_client.h | 303 * @param procLevelMap ,<pid, level> map; 306 virtual AppMgrResultCode NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const;
|
H A D | app_mgr_proxy.h | 229 * @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 D | app_mgr_client_first_test.cpp | 132 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 D | abilityappmgrapprunningmanager_fuzzer.cpp | 207 std::map<pid_t, MemoryLevel> procLevelMap; in DoSomethingInterestingWithMyAPI() local 208 manager->NotifyProcMemoryLevel(procLevelMap); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_running_manager.h | 209 * @param procLevelMap , <pid_t, MemoryLevel>. 212 int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
H A D | app_mgr_service.h | 257 * @param procLevelMap , <pid_t, MemoryLevel> map. 260 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
|
H A D | app_mgr_service_inner.h | 454 * @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 D | mock_app_mgr_service.h | 37 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 D | mock_app_mgr_service.h | 43 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 D | mock_app_mgr_service.h | 36 MOCK_METHOD1(NotifyProcMemoryLevel, int32_t(const std::map<pid_t, MemoryLevel> &procLevelMap));
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/ |
H A D | app_mgr_client_test.cpp | 732 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 D | app_running_manager_second_test.cpp | 469 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 D | app_running_manager.cpp | 907 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 D | app_mgr_service.cpp | 495 int32_t AppMgrService::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 500 return appMgrServiceInner_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|
H A D | app_mgr_service_inner.cpp | 2171 int32_t AppMgrServiceInner::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() argument 2186 return appRunningManager_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|