Home
last modified time | relevance | path

Searched refs:SetSupportedProcessCacheSelf (Results 1 - 25 of 27) sorted by relevance

12

/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/include/
H A Djs_application_context_utils.h56 static napi_value SetSupportedProcessCacheSelf(napi_env env, napi_callback_info info);
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/ability_runtime/context/
H A Djs_application_context_utils.h126 static napi_value SetSupportedProcessCacheSelf(napi_env env, napi_callback_info info);
H A Dapplication_context.h143 int32_t SetSupportedProcessCacheSelf(bool isSupport);
H A Dcontext_impl.h389 int32_t SetSupportedProcessCacheSelf(bool isSupport);
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_mgr_interface.h789 virtual int32_t SetSupportedProcessCacheSelf(bool isSupport) = 0;
H A Dapp_mgr_client.h823 int32_t SetSupportedProcessCacheSelf(bool isSupport);
H A Dapp_mgr_proxy.h692 int32_t SetSupportedProcessCacheSelf(bool isSupport) override;
/foundation/ability/ability_runtime/frameworks/native/appkit/ability_runtime/context/
H A Dapplication_context.cpp846 int32_t ApplicationContext::SetSupportedProcessCacheSelf(bool isSupport) in SetSupportedProcessCacheSelf() function in OHOS::AbilityRuntime::ApplicationContext
849 return contextImpl_->SetSupportedProcessCacheSelf(isSupport); in SetSupportedProcessCacheSelf()
H A Djs_application_context_utils.cpp1609 napi_value JsApplicationContextUtils::SetSupportedProcessCacheSelf(napi_env env, napi_callback_info info) in SetSupportedProcessCacheSelf() function in OHOS::AbilityRuntime::JsApplicationContextUtils
1640 int32_t errCode = applicationContext->SetSupportedProcessCacheSelf(isSupport); in OnSetSupportedProcessCacheSelf()
1707 JsApplicationContextUtils::SetSupportedProcessCacheSelf); in BindNativeApplicationContextTwo()
H A Dcontext_impl.cpp1448 int32_t ContextImpl::SetSupportedProcessCacheSelf(bool isSupport) in SetSupportedProcessCacheSelf() function in OHOS::AbilityRuntime::ContextImpl
1456 return appMgrClient->SetSupportedProcessCacheSelf(isSupport); in SetSupportedProcessCacheSelf()
/foundation/ability/ability_runtime/test/unittest/app_mgr_service_test/
H A Dapp_mgr_service_test.cpp1684 * Function: SetSupportedProcessCacheSelf
1686 * FunctionPoints: AppMgrService SetSupportedProcessCacheSelf
1688 * CaseDescription: Verify SetSupportedProcessCacheSelf
1697 int32_t res = appMgrService->SetSupportedProcessCacheSelf(isSupported); in HWTEST_F()
1703 * Function: SetSupportedProcessCacheSelf
1705 * FunctionPoints: AppMgrService SetSupportedProcessCacheSelf
1707 * CaseDescription: Verify SetSupportedProcessCacheSelf
1719 int32_t res = appMgrService->SetSupportedProcessCacheSelf(false); in HWTEST_F()
1724 res = appMgrService->SetSupportedProcessCacheSelf(false); in HWTEST_F()
1753 res = appMgrService->SetSupportedProcessCacheSelf(fals in HWTEST_F()
[all...]
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/
H A Dmock_app_mgr_service.h111 MOCK_METHOD1(SetSupportedProcessCacheSelf, int32_t(bool isSupport));
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/
H A Dmock_app_mgr_service.h88 MOCK_METHOD1(SetSupportedProcessCacheSelf, int32_t(bool isSupported));
/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_mgr_service.h734 int32_t SetSupportedProcessCacheSelf(bool isSupport) override;
H A Dapp_mgr_service_inner.h1284 int32_t SetSupportedProcessCacheSelf(bool isSupport);
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/
H A Dmock_app_mgr_service.h108 MOCK_METHOD1(SetSupportedProcessCacheSelf, int32_t(bool isSupport));
/foundation/ability/ability_runtime/test/unittest/app_mgr_stub_test/
H A Dapp_mgr_stub_test.cpp653 EXPECT_CALL(*mockAppMgrService_, SetSupportedProcessCacheSelf(_)).Times(1); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/
H A Dapp_mgr_proxy_test.cpp656 appMgrProxy_->SetSupportedProcessCacheSelf(isSupported); in HWTEST_F()
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_mgr_client.cpp1258 int32_t AppMgrClient::SetSupportedProcessCacheSelf(bool isSupport) in SetSupportedProcessCacheSelf() function in OHOS::AppExecFwk::AppMgrClient
1266 return service->SetSupportedProcessCacheSelf(isSupport); in SetSupportedProcessCacheSelf()
H A Dapp_mgr_stub.cpp1554 auto ret = SetSupportedProcessCacheSelf(isSupport); in HandleSetSupportedProcessCacheSelf()
H A Dapp_mgr_proxy.cpp1862 int32_t AppMgrProxy::SetSupportedProcessCacheSelf(bool isSupport) in SetSupportedProcessCacheSelf() function in OHOS::AppExecFwk::AppMgrProxy
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_mgr_service.cpp1537 int32_t AppMgrService::SetSupportedProcessCacheSelf(bool isSupport) in SetSupportedProcessCacheSelf() function in OHOS::AppExecFwk::AppMgrService
1544 return appMgrServiceInner_->SetSupportedProcessCacheSelf(isSupport); in SetSupportedProcessCacheSelf()
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/
H A Dapp_mgr_client_test.cpp1334 * @tc.desc: SetSupportedProcessCacheSelf.
1341 int32_t ret = appMgrClient->SetSupportedProcessCacheSelf(isSupport); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/application_context_test/
H A Dapplication_context_test.cpp1262 * @tc.name: SetSupportedProcessCacheSelf
1263 * @tc.desc: SetSupportedProcessCacheSelf fail with no permission
1268 int32_t res = context_->SetSupportedProcessCacheSelf(isSupport); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Dcontext_impl_test.cpp1462 EXPECT_NE(contextImpl_->SetSupportedProcessCacheSelf(true), 0); in HWTEST_F()

Completed in 59 milliseconds

12