Home
last modified time | relevance | path

Searched refs:AppMgrInterfaceCode (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_mgr_stub.cpp98 case static_cast<uint32_t>(AppMgrInterfaceCode::APP_ATTACH_APPLICATION): in OnRemoteRequestInnerFirst()
100 case static_cast<uint32_t>(AppMgrInterfaceCode::PRELOAD_APPLICATION): in OnRemoteRequestInnerFirst()
108 case static_cast<uint32_t>(AppMgrInterfaceCode::APP_ABILITY_CLEANED): in OnRemoteRequestInnerFirst()
110 case static_cast<uint32_t>(AppMgrInterfaceCode::APP_GET_MGR_INSTANCE): in OnRemoteRequestInnerFirst()
142 case static_cast<uint32_t>(AppMgrInterfaceCode::FINISH_USER_TEST): in OnRemoteRequestInnerSecond()
152 case static_cast<uint32_t>(AppMgrInterfaceCode::START_RENDER_PROCESS): in OnRemoteRequestInnerSecond()
158 case static_cast<uint32_t>(AppMgrInterfaceCode::GET_CONFIGURATION): in OnRemoteRequestInnerSecond()
198 case static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_APP_FAULT): in OnRemoteRequestInnerThird()
248 case static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_PAGE_SHOW): in OnRemoteRequestInnerFifth()
250 case static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_PAGE_HIDE): in OnRemoteRequestInnerFifth()
[all …]
H A Dapp_mgr_proxy.cpp135 if (!SendTransactCmd(AppMgrInterfaceCode::APP_GET_MGR_INSTANCE, data, reply)) { in GetAmsMgr()
821 int32_t ret = SendRequest(AppMgrInterfaceCode::START_RENDER_PROCESS, data, in StartRenderProcess()
881 if (!SendTransactCmd(AppMgrInterfaceCode::SAVE_BROWSER_CHANNEL, data, reply)) { in SaveBrowserChannel()
1060 auto ret = SendRequest(AppMgrInterfaceCode::GET_APP_RUNNING_STATE, in GetAppRunningStateByBundleName()
1092 auto ret = SendRequest(AppMgrInterfaceCode::NOTIFY_LOAD_REPAIR_PATCH, in NotifyLoadRepairPatch()
1124 auto ret = SendRequest(AppMgrInterfaceCode::NOTIFY_HOT_RELOAD_PAGE, in NotifyHotReloadPage()
1157 auto ret = SendRequest(AppMgrInterfaceCode::SET_CONTINUOUSTASK_PROCESS, in SetContinuousTaskProcess()
1211 auto ret = SendRequest(AppMgrInterfaceCode::IS_SHARED_BUNDLE_RUNNING, in IsSharedBundleRunning()
1346 auto ret = SendRequest(AppMgrInterfaceCode::SET_APPFREEZE_FILTER, in SetAppFreezeFilter()
1399 auto ret = SendRequest(AppMgrInterfaceCode::GET_PIDS_BY_BUNDLENAME, in GetRunningProcessInformation()
[all …]
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/
H A Dapp_mgr_proxy_test.cpp164 …mockAppMgrService_->code_, static_cast<uint32_t>(AppMgrInterfaceCode::GET_ALL_CHILDREN_PROCESSES));
186 …EXPECT_EQ(mockAppMgrService_->code_, static_cast<uint32_t>(AppMgrInterfaceCode::GET_APP_RUNNING_ST…
338 …EXPECT_EQ(mockAppMgrService_->code_, static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_APP_FAULT));
386 …EXPECT_EQ(mockAppMgrService_->code_, static_cast<uint32_t>(AppMgrInterfaceCode::CHANGE_APP_GC_STAT…
422 … EXPECT_EQ(mockAppMgrService_->code_, static_cast<uint32_t>(AppMgrInterfaceCode::IS_APP_RUNNING));
439 static_cast<uint32_t>(AppMgrInterfaceCode::REGISTER_ABILITY_FOREGROUND_STATE_OBSERVER));
468 static_cast<uint32_t>(AppMgrInterfaceCode::UNREGISTER_ABILITY_FOREGROUND_STATE_OBSERVER));
601 static_cast<uint32_t>(AppMgrInterfaceCode::GET_ALL_UI_EXTENSION_ROOT_HOST_PID));
619 static_cast<uint32_t>(AppMgrInterfaceCode::GET_ALL_UI_EXTENSION_PROVIDER_PID));
640 static_cast<uint32_t>(AppMgrInterfaceCode::PRELOAD_APPLICATION));
[all …]
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_stub_test/
H A Dapp_mgr_stub_test.cpp137 static_cast<uint32_t>(AppMgrInterfaceCode::GET_APP_RUNNING_STATE), data, reply, option);
228 … static_cast<uint32_t>(AppMgrInterfaceCode::PRE_START_NWEBSPAWN_PROCESS), data, reply, option);
254 static_cast<uint32_t>(AppMgrInterfaceCode::GET_PROCESS_MEMORY_BY_PID), data, reply, option);
282 static_cast<uint32_t>(AppMgrInterfaceCode::GET_PIDS_BY_BUNDLENAME), data, reply, option);
308 static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_APP_FAULT), data, reply, option);
333 static_cast<uint32_t>(AppMgrInterfaceCode::NOTIFY_APP_FAULT_BY_SA), data, reply, option);
350 static_cast<uint32_t>(AppMgrInterfaceCode::SET_APPFREEZE_FILTER), data, reply, option);
369 static_cast<uint32_t>(AppMgrInterfaceCode::CHANGE_APP_GC_STATE), data, reply, option);
395 static_cast<uint32_t>(AppMgrInterfaceCode::IS_APP_RUNNING), data, reply, option);
419 static_cast<uint32_t>(AppMgrInterfaceCode::IS_APPLICATION_RUNNING), data, reply, option);
[all …]
/ohos5.0/base/security/access_token/services/common/test/unittest/
H A Dinterface_code_test.cpp74 …ASSERT_EQ(static_cast<uint32_t>(AppExecFwk::AppMgrInterfaceCode::REGISTER_APPLICATION_STATE_OBSERV…
76 …ASSERT_EQ(static_cast<uint32_t>(AppExecFwk::AppMgrInterfaceCode::UNREGISTER_APPLICATION_STATE_OBSE…
78 ASSERT_EQ(static_cast<uint32_t>(AppExecFwk::AppMgrInterfaceCode::GET_FOREGROUND_APPLICATIONS),
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_mgr_ipc_interface_code.h22 enum class AppMgrInterfaceCode { enum
H A Dapp_mgr_proxy.h689 bool SendTransactCmd(AppMgrInterfaceCode code, MessageParcel &data, MessageParcel &reply);
691 int32_t SendRequest(AppMgrInterfaceCode code, MessageParcel &data, MessageParcel &reply,
/ohos5.0/foundation/ability/ability_runtime/test/fuzztest/appmanager_fuzzer/
H A Dappmanager_fuzzer.cpp52 …code <= static_cast<uint32_t>(AppMgrInterfaceCode::RESTART_RESIDENT_PROCESS_DEPENDED_ON_WEB); ++co… in DoSomethingInterestingWithMyAPI()