Home
last modified time | relevance | path

Searched refs:GetSandboxSection (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/startup/appspawn/test/unittest/app_spawn_standard_test/
H A Dapp_spawn_sandboxmgr_test.cpp231 section = GetSandboxSection(&sandbox->requiredQueue, "system-const");
237 section = GetSandboxSection(&sandbox->requiredQueue, "system-const");
257 SandboxSection *section = GetSandboxSection(nullptr, "system-const");
259 section = GetSandboxSection(nullptr, "");
261 section = GetSandboxSection(nullptr, nullptr);
263 section = GetSandboxSection(&sandbox->requiredQueue, "");
265 section = GetSandboxSection(&sandbox->requiredQueue, nullptr);
273 section = GetSandboxSection(&sandbox->requiredQueue, "system-const");
H A Dapp_spawn_sandbox_new_test.cpp943 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, "system-const");
992 GetSandboxSection(&sandbox->packageNameQueue, "test.example.ohos.com"));
1038 GetSandboxSection(&sandbox->permissionQueue, "ohos.permission.FILE_ACCESS_MANAGER"));
1087 GetSandboxSection(&sandbox->spawnFlagsQueue, "START_FLAGS_BACKUP"));
1124 GetSandboxSection(&sandbox->nameGroupsQueue, "el5"));
1282 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, "app-variable");
/ohos5.0/base/startup/appspawn/modules/sandbox/
H A Dsandbox_load.c366 mountNode = (SandboxNameGroupNode *)GetSandboxSection(&sandbox->nameGroupsQueue, name); in ParseMountGroupsConfig()
441 …SandboxPackageNameNode *node = (SandboxPackageNameNode *)GetSandboxSection(&sandbox->packageNameQu… in ParsePackageNameConfig()
461 SandboxFlagsNode *node = (SandboxFlagsNode *)GetSandboxSection(&sandbox->spawnFlagsQueue, name); in ParseSpawnFlagsConfig()
481 …SandboxPermissionNode *node = (SandboxPermissionNode *)GetSandboxSection(&sandbox->permissionQueue… in ParsePermissionConfig()
502 …SandboxNameGroupNode *node = (SandboxNameGroupNode *)GetSandboxSection(&sandbox->nameGroupsQueue, … in ParseNameGroup()
622 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, config->string); in ParseAppSandboxConfig()
H A Dappspawn_sandbox.c191 SandboxPackageNameNode *packageNode = (SandboxPackageNameNode *)GetSandboxSection( in InitSandboxContext()
613 … (SandboxPackageNameNode *)GetSandboxSection(&sandbox->packageNameQueue, context->bundleName); in SetSandboxPackageNameConfig()
821 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, name); in UnmountSandboxConfigs()
875 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, "system-const"); in StagedMountSystemConst()
949 SandboxSection *section = GetSandboxSection(&sandbox->requiredQueue, "app-variable"); in SetAppVariableConfig()
H A Dappspawn_sandbox.h228 SandboxSection *GetSandboxSection(const SandboxQueue *queue, const char *name);
H A Dsandbox_manager.c307 SandboxSection *GetSandboxSection(const SandboxQueue *queue, const char *name) in GetSandboxSection() function