Home
last modified time | relevance | path

Searched refs:raw_path (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/util/
H A Ddebuginfo.h55 int get_source_from_debuginfod(const char *raw_path, const char *sbuild_id,
58 static inline int get_source_from_debuginfod(const char *raw_path __maybe_unused, in get_source_from_debuginfod()
H A Ddebuginfo.c180 int get_source_from_debuginfod(const char *raw_path, in get_source_from_debuginfod() argument
184 const char *p = raw_path; in get_source_from_debuginfod()
198 raw_path, sbuild_id); in get_source_from_debuginfod()
H A Dprobe-finder.c1872 int find_source_path(const char *raw_path, const char *sbuild_id, in find_source_path()
1880 path__join(prefixed_raw_path, sizeof(prefixed_raw_path), comp_dir, raw_path); in find_source_path()
1887 if (raw_path[0] != '/' && comp_dir) in find_source_path()
1891 if (access(raw_path, R_OK) == 0) { in find_source_path()
1892 *new_path = strdup(raw_path); in find_source_path()
1899 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2)); in find_source_path()
1904 sprintf(*new_path, "%s/%s", prefix, raw_path); in find_source_path()
1920 raw_path = strchr(++raw_path, '/');
1921 if (!raw_path) {
1860 find_source_path(const char * raw_path,const char * sbuild_id,const char * comp_dir,char ** new_path) find_source_path() argument
[all...]
H A Dprobe-finder.h47 int find_source_path(const char *raw_path, const char *sbuild_id,