Lines Matching refs:new_path
1994 const char *sbuild_id, char **new_path) in get_source_from_debuginfod() argument
2004 0, p, new_path); in get_source_from_debuginfod()
2014 pr_debug("Got a source %s\n", *new_path); in get_source_from_debuginfod()
2021 char **new_path __maybe_unused) in get_source_from_debuginfod()
2033 const char *comp_dir, char **new_path) in find_source_path() argument
2038 if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path)) in find_source_path()
2048 *new_path = strdup(raw_path); in find_source_path()
2049 return *new_path ? 0 : -ENOMEM; in find_source_path()
2055 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2)); in find_source_path()
2056 if (!*new_path) in find_source_path()
2060 sprintf(*new_path, "%s/%s", prefix, raw_path); in find_source_path()
2062 if (access(*new_path, R_OK) == 0) in find_source_path()
2067 zfree(new_path); in find_source_path()
2078 zfree(new_path); in find_source_path()
2084 zfree(new_path); in find_source_path()