Lines Matching refs:raw_path
1993 static int get_source_from_debuginfod(const char *raw_path,
1997 const char *p = raw_path;
2011 raw_path, sbuild_id);
2019 static inline int get_source_from_debuginfod(const char *raw_path __maybe_unused,
2032 int find_source_path(const char *raw_path, const char *sbuild_id,
2038 if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path))
2043 if (raw_path[0] != '/' && comp_dir)
2047 if (access(raw_path, R_OK) == 0) {
2048 *new_path = strdup(raw_path);
2055 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
2060 sprintf(*new_path, "%s/%s", prefix, raw_path);
2076 raw_path = strchr(++raw_path, '/');
2077 if (!raw_path) {