Lines Matching refs:new_path
2015 const char *sbuild_id, char **new_path) in get_source_from_debuginfod() argument
2025 0, p, new_path); in get_source_from_debuginfod()
2035 pr_debug("Got a source %s\n", *new_path); in get_source_from_debuginfod()
2042 char **new_path __maybe_unused) in get_source_from_debuginfod()
2054 const char *comp_dir, char **new_path) in find_source_path() argument
2059 if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path)) in find_source_path()
2069 *new_path = strdup(raw_path); in find_source_path()
2070 return *new_path ? 0 : -ENOMEM; in find_source_path()
2076 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2)); in find_source_path()
2077 if (!*new_path) in find_source_path()
2081 sprintf(*new_path, "%s/%s", prefix, raw_path); in find_source_path()
2083 if (access(*new_path, R_OK) == 0) in find_source_path()
2088 zfree(new_path); in find_source_path()
2099 zfree(new_path); in find_source_path()
2105 zfree(new_path); in find_source_path()