Home
last modified time | relevance | path

Searched refs:debugfile (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/tools/perf/tests/
H A Dpe-file-parsing.c26 char debugfile[PATH_MAX]; in run_dir() local
51 scnprintf(debugfile, PATH_MAX, "%s/%s", d, debuglink); in run_dir()
52 ret = filename__read_build_id(debugfile, &bid); in run_dir()
61 ret = dso__load_bfd_symbols(dso, debugfile); in run_dir()
/linux-6.15/scripts/genksyms/
H A Dgenksyms.c28 static FILE *debugfile; variable
285 fprintf(debugfile, "Defn for %s %s == <", in __add_symbol()
291 fputs("extern ", debugfile); in __add_symbol()
292 print_list(debugfile, defn); in __add_symbol()
293 fputs(">\n", debugfile); in __add_symbol()
551 fprintf(debugfile, "%s ", cur->string); in expand_and_crc_sym()
562 fprintf(debugfile, "%s ", cur->string); in expand_and_crc_sym()
593 fprintf(debugfile, "%s %s ", in expand_and_crc_sym()
638 fprintf(debugfile, "Export %s == <", name); in export_symbol()
674 fputs(">\n", debugfile); in export_symbol()
[all …]
/linux-6.15/tools/perf/util/
H A Dbuild-id.c571 char *debugfile; in build_id_cache__find_debug() local
575 debugfile = calloc(1, PATH_MAX); in build_id_cache__find_debug()
576 if (!debugfile) in build_id_cache__find_debug()
589 realname = realpath(debugfile, NULL); in build_id_cache__find_debug()
613 free(debugfile); in build_id_cache__find_debug()
624 char *debugfile = NULL; in build_id_cache__add() local
675 if (debugfile) { in build_id_cache__add()
684 if (copyfile_ns(debugfile, filename, in build_id_cache__add()
687 } else if (link(debugfile, filename) && in build_id_cache__add()
689 copyfile(debugfile, filename)) in build_id_cache__add()
[all …]
H A Dsymbol.h178 int dso__load_bfd_symbols(struct dso *dso, const char *debugfile);
H A Dsymbol.c1603 int dso__load_bfd_symbols(struct dso *dso, const char *debugfile) in dso__load_bfd_symbols() argument
1613 abfd = bfd_openr(debugfile, NULL); in dso__load_bfd_symbols()