Lines Matching refs:new_path
1991 const char *sbuild_id, char **new_path) in get_source_from_debuginfod() argument
2001 0, p, new_path); in get_source_from_debuginfod()
2011 pr_debug("Got a source %s\n", *new_path); in get_source_from_debuginfod()
2018 char **new_path __maybe_unused) in get_source_from_debuginfod()
2030 const char *comp_dir, char **new_path) in find_source_path() argument
2035 if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path)) in find_source_path()
2045 *new_path = strdup(raw_path); in find_source_path()
2046 return *new_path ? 0 : -ENOMEM; in find_source_path()
2052 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2)); in find_source_path()
2053 if (!*new_path) in find_source_path()
2057 sprintf(*new_path, "%s/%s", prefix, raw_path); in find_source_path()
2059 if (access(*new_path, R_OK) == 0) in find_source_path()
2064 zfree(new_path); in find_source_path()
2075 zfree(new_path); in find_source_path()
2081 zfree(new_path); in find_source_path()