Lines Matching refs:new_path
2002 const char *sbuild_id, char **new_path) in get_source_from_debuginfod() argument
2012 0, p, new_path); in get_source_from_debuginfod()
2022 pr_debug("Got a source %s\n", *new_path); in get_source_from_debuginfod()
2029 char **new_path __maybe_unused) in get_source_from_debuginfod()
2041 const char *comp_dir, char **new_path) in find_source_path() argument
2046 if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path)) in find_source_path()
2056 *new_path = strdup(raw_path); in find_source_path()
2057 return *new_path ? 0 : -ENOMEM; in find_source_path()
2063 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2)); in find_source_path()
2064 if (!*new_path) in find_source_path()
2068 sprintf(*new_path, "%s/%s", prefix, raw_path); in find_source_path()
2070 if (access(*new_path, R_OK) == 0) in find_source_path()
2075 zfree(new_path); in find_source_path()
2086 zfree(new_path); in find_source_path()
2092 zfree(new_path); in find_source_path()