Lines Matching refs:path
39 return -1, "Failed to format path app: %{public}s", context->bundleName);
49 return -1, "Failed to format path app: %{public}s", context->bundleName);
67 return -1, "Failed to format path app: %{public}s", context->bundleName);
88 "Failed to format path app: %{public}s", arkWebPackageName);
145 char *path = extraData->data.depNode->source;
147 path = extraData->data.depNode->target;
148 } else if (CHECK_FLAGS_BY_INDEX(extraData->operation, MOUNT_PATH_OP_REPLACE_BY_SRC) && IsPathEmpty(path)) {
149 path = extraData->data.depNode->target;
151 APPSPAWN_CHECK(path != NULL, return -1, "Invalid path %{public}x ", extraData->operation);
152 uint32_t len = strlen(path);
153 int ret = memcpy_s((char *)buffer, bufferLen, path, len);
208 return -1, "Failed to format path app: %{public}s flags %{public}u", context->bundleName, flags);
315 // For the depNode scenario, if there are variables in the deps path, a secondary replacement is required
355 deps-path路径变量的含义:
356 1)首次挂载时,表示mount-paths-deps->sandbox-path 【STAGE_GLOBAL或者应用孵化时的挂载】
358 2)二次挂载时,表示mount-paths-deps->src-path;
359 如果mount-paths-deps->src-path为空,则使用mount-paths-deps->sandbox-path
363 AddVariableReplaceHandler("<deps-sandbox-path>", ReplaceVariableForDepSandboxPath);
364 AddVariableReplaceHandler("<deps-src-path>", ReplaceVariableForDepSrcPath);
365 AddVariableReplaceHandler("<deps-path>", ReplaceVariableForDepPath);