Home
last modified time | relevance | path

Searched refs:isSandbox (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/base/global/resource_management/frameworks/resmgr/src/
H A Dsystem_resource_manager.cpp75 bool SystemResourceManager::CreateSystemResourceManager(bool isSandbox) in CreateSystemResourceManager() argument
92 if (!LoadSystemResource(impl, isSandbox)) { in CreateSystemResourceManager()
102 bool SystemResourceManager::LoadSystemResource(ResourceManagerImpl *impl, bool isSandbox) in LoadSystemResource() argument
107 if (!isSandbox) { in LoadSystemResource()
/ohos5.0/base/global/resource_management/frameworks/resmgr/include/
H A Dsystem_resource_manager.h64 static bool LoadSystemResource(ResourceManagerImpl *impl, bool isSandbox = true);
66 static bool CreateSystemResourceManager(bool isSandbox = true);
/ohos5.0/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/
H A Dmock_app_mgr_service.h180 virtual int32_t JudgeSandboxByPid(pid_t pid, bool &isSandbox) in JudgeSandboxByPid() argument
182 isSandbox = isSandbox_; in JudgeSandboxByPid()
/ohos5.0/foundation/ability/form_fwk/services/src/
H A Dform_render_mgr.cpp542 void FormRenderMgr::InitRenderInner(bool isSandbox, int32_t userId) in InitRenderInner() argument
544 HILOG_INFO("isSandbox: %{public}d userId: %{public}d.", isSandbox, userId); in InitRenderInner()
546 if (isSandbox) { in InitRenderInner()
/ohos5.0/foundation/ability/form_fwk/services/include/
H A Dform_render_mgr.h118 void InitRenderInner(bool isSandbox, int32_t userId);
/ohos5.0/base/security/dlp_permission_service/services/dlp_permission/sa/sa_main/
H A Ddlp_permission_service.cpp388 bool isSandbox = false; in GetSandboxExternalAuthorization() local
390 appStateObserver_->IsInDlpSandbox(isSandbox, sandboxUid); in GetSandboxExternalAuthorization()
391 if (isSandbox && !CheckAllowAbilityList(want)) { in GetSandboxExternalAuthorization()
/ohos5.0/foundation/ability/ability_runtime/services/uripermmgr/src/
H A Duri_permission_manager_stub_impl.cpp256 bool isSandbox = false; in CheckCalledBySandBox() local
257 if (IN_PROCESS_CALL(appMgr_->JudgeSandboxByPid(callerPid, isSandbox)) != ERR_OK) { in CheckCalledBySandBox()
261 if (isSandbox) { in CheckCalledBySandBox()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_mgr_interface.h218 virtual int32_t JudgeSandboxByPid(pid_t pid, bool &isSandbox) = 0;
H A Dapp_mgr_proxy.h196 virtual int32_t JudgeSandboxByPid(pid_t pid, bool &isSandbox) override;
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_mgr_service.h221 virtual int32_t JudgeSandboxByPid(pid_t pid, bool &isSandbox) override;
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_mgr_stub.cpp587 bool isSandbox = false; in HandleJudgeSandboxByPid() local
588 auto result = JudgeSandboxByPid(pid, isSandbox); in HandleJudgeSandboxByPid()
589 if (!reply.WriteBool(isSandbox)) { in HandleJudgeSandboxByPid()
H A Dapp_mgr_proxy.cpp322 int32_t AppMgrProxy::JudgeSandboxByPid(pid_t pid, bool &isSandbox) in JudgeSandboxByPid() argument
333 isSandbox = reply.ReadBool(); in JudgeSandboxByPid()
/ohos5.0/base/startup/init/services/init/
H A Dinit_service_manager.c779 int isSandbox = (int)cJSON_GetNumberValue(item); in GetServiceSandbox() local
780 if (isSandbox == 0) { in GetServiceSandbox()
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_mgr_service.cpp452 int32_t AppMgrService::JudgeSandboxByPid(pid_t pid, bool &isSandbox) in JudgeSandboxByPid() argument
466 isSandbox = true; in JudgeSandboxByPid()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinner_bundle_info.h1581 void SetIsSandbox(bool isSandbox) in SetIsSandbox() argument
1583 isSandboxApp_ = isSandbox; in SetIsSandbox()