Home
last modified time | relevance | path

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

/ohos5.0/base/startup/appspawn/modules/sandbox/
H A Dsandbox_load.c415 cJSON *pathConfigs = cJSON_GetObjectItemCaseSensitive(configs, "mount-paths"); in ParseBaseConfig() local
416 if (pathConfigs != NULL) { // mount-paths in ParseBaseConfig()
417 ret = ParseMountPathsConfig(sandbox, pathConfigs, section, SANDBOX_TAG_MOUNT_PATH); in ParseBaseConfig()
420 pathConfigs = cJSON_GetObjectItemCaseSensitive(configs, "mount-files"); in ParseBaseConfig()
421 if (pathConfigs != NULL) { // mount-files in ParseBaseConfig()
422 ret = ParseMountPathsConfig(sandbox, pathConfigs, section, SANDBOX_TAG_MOUNT_FILE); in ParseBaseConfig()
425 pathConfigs = cJSON_GetObjectItemCaseSensitive(configs, "symbol-links"); in ParseBaseConfig()
426 if (pathConfigs != NULL) { // symbol-links in ParseBaseConfig()
427 ret = ParseSymbolLinksConfig(sandbox, pathConfigs, section); in ParseBaseConfig()