Home
last modified time | relevance | path

Searched refs:comp_dir (Results 1 – 6 of 6) sorted by relevance

/external/elfutils/0.153/src/
Daddr2line.c296 const char *comp_dir = ""; in print_dwarf_function() local
310 comp_dir = dirs[0]; in print_dwarf_function()
317 comp_dir, comp_dir_sep, file); in print_dwarf_function()
320 comp_dir, comp_dir_sep, file, lineno); in print_dwarf_function()
323 comp_dir, comp_dir_sep, file, lineno, colno); in print_dwarf_function()
519 const char *comp_dir = ""; in handle_address() local
526 comp_dir = dwfl_line_comp_dir (line); in handle_address()
527 if (comp_dir != NULL) in handle_address()
533 comp_dir, comp_dir_sep, src, lineno, linecol); in handle_address()
536 comp_dir, comp_dir_sep, src, lineno); in handle_address()
/external/llvm/test/DebugInfo/
Dlto-comp-dir.ll7 ; unambiguously rely on the comp_dir of their owning CU and use directory '0'
22 ; comp_dir is ambiguous and relying on it would lead to different path
24 ; full paths are always emitted in this case, never comp_dir relative.
/external/elfutils/0.153/libdw/
Ddwarf_getsrclines.c125 const char *comp_dir = INTUSE(dwarf_formstring) (compdir_attr); in dwarf_getsrclines() local
210 .dir = comp_dir, in dwarf_getsrclines()
211 .len = comp_dir ? strlen (comp_dir) : 0, in dwarf_getsrclines()
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Dprobe-event.h93 char *comp_dir; /* Compile directory */ member
Dprobe-finder.c1552 const char *comp_dir; in debuginfo__find_line_range() local
1603 comp_dir = cu_get_comp_dir(&lf.cu_die); in debuginfo__find_line_range()
1604 if (comp_dir) { in debuginfo__find_line_range()
1605 lr->comp_dir = strdup(comp_dir); in debuginfo__find_line_range()
1606 if (!lr->comp_dir) in debuginfo__find_line_range()
Dprobe-event.c366 static int get_real_path(const char *raw_path, const char *comp_dir, in get_real_path() argument
372 if (raw_path[0] != '/' && comp_dir) in get_real_path()
374 prefix = comp_dir; in get_real_path()
501 ret = get_real_path(tmp, lr->comp_dir, &lr->path); in show_line_range()