Searched refs:pathConfigs (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/base/startup/appspawn/modules/sandbox/ |
H A D | sandbox_load.c | 415 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()
|