/foundation/ability/ability_runtime/test/unittest/app_mgr_client_first_test/ |
H A D | app_mgr_client_first_test.cpp | 124 * @tc.desc: AppMgrClient test for NotifyProcMemoryLevel. 133 auto result = appMgrClient->NotifyProcMemoryLevel(procLevelMap); in HWTEST_F()
|
/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 | 254 * NotifyProcMemoryLevel, call NotifyMemoryLevel() through proxy project. 260 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
|
H A D | app_mgr_service_inner.h | 452 * NotifyProcMemoryLevel, Notify applications background the current memory level. 458 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap);
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_mgr_interface.h | 250 * NotifyProcMemoryLevel, call NotifyMemoryLevel() through proxy project. 256 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) = 0;
|
H A D | app_mgr_client.h | 300 * NotifyProcMemoryLevel, call NotifyMemoryLevel() through proxy project. 306 virtual AppMgrResultCode NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const;
|
H A D | app_mgr_proxy.h | 226 * NotifyProcMemoryLevel, call NotifyMemoryLevel() through proxy project. 232 virtual int32_t NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) override;
|
/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/fuzztest/abilityappmgrapprunningmanager_fuzzer/ |
H A D | abilityappmgrapprunningmanager_fuzzer.cpp | 208 manager->NotifyProcMemoryLevel(procLevelMap); in DoSomethingInterestingWithMyAPI()
|
/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/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | app_mgr_client.cpp | 495 AppMgrResultCode AppMgrClient::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) const in NotifyProcMemoryLevel() function in OHOS::AppExecFwk::AppMgrClient 503 return AppMgrResultCode(service->NotifyProcMemoryLevel(procLevelMap)); in NotifyProcMemoryLevel()
|
H A D | app_mgr_stub.cpp | 639 auto result = NotifyProcMemoryLevel(memoryLevelInfo->GetProcLevelMap()); in HandleNotifyProcMemoryLevel()
|
H A D | app_mgr_proxy.cpp | 395 int32_t AppMgrProxy::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() function in OHOS::AppExecFwk::AppMgrProxy
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_mgr_service.cpp | 495 int32_t AppMgrService::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() function in OHOS::AppExecFwk::AppMgrService 500 return appMgrServiceInner_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|
H A D | app_running_manager.cpp | 907 int32_t AppRunningManager::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() function in OHOS::AppExecFwk::AppRunningManager
|
H A D | app_mgr_service_inner.cpp | 2171 int32_t AppMgrServiceInner::NotifyProcMemoryLevel(const std::map<pid_t, MemoryLevel> &procLevelMap) in NotifyProcMemoryLevel() function in OHOS::AppExecFwk::AppMgrServiceInner 2186 return appRunningManager_->NotifyProcMemoryLevel(procLevelMap); in NotifyProcMemoryLevel()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/ |
H A D | app_mgr_client_test.cpp | 726 * @tc.desc: NotifyProcMemoryLevel. 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 | 470 auto ret = appRunningManager->NotifyProcMemoryLevel(procLevelMap); in HWTEST_F()
|