Searched refs:debugfile (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/tools/perf/tests/ |
H A D | pe-file-parsing.c | 26 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()
|
/openbmc/linux/scripts/genksyms/ |
H A D | genksyms.c | 29 static FILE *debugfile; variable 301 fprintf(debugfile, "Defn for %s %s == <", in __add_symbol() 304 fprintf(debugfile, "Defn for type%d %s == <", in __add_symbol() 307 fputs("extern ", debugfile); in __add_symbol() 308 print_list(debugfile, defn); in __add_symbol() 309 fputs(">\n", debugfile); in __add_symbol() 567 fprintf(debugfile, "%s ", cur->string); in expand_and_crc_sym() 578 fprintf(debugfile, "%s ", cur->string); in expand_and_crc_sym() 609 fprintf(debugfile, "%s %s ", in expand_and_crc_sym() 653 fprintf(debugfile, "Export %s == <", name); in export_symbol() [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | build-id.c | 631 char *debugfile; in build_id_cache__find_debug() local 635 debugfile = calloc(1, PATH_MAX); in build_id_cache__find_debug() 636 if (!debugfile) in build_id_cache__find_debug() 644 len = __symbol__join_symfs(debugfile, PATH_MAX, dirname); in build_id_cache__find_debug() 645 snprintf(debugfile + len, PATH_MAX - len, "%.2s/%s.debug", sbuild_id, in build_id_cache__find_debug() 649 realname = realpath(debugfile, NULL); in build_id_cache__find_debug() 673 free(debugfile); in build_id_cache__find_debug() 684 char *debugfile = NULL; in build_id_cache__add() local 734 debugfile = build_id_cache__find_debug(sbuild_id, nsi, root_dir); in build_id_cache__add() 735 if (debugfile) { in build_id_cache__add() [all …]
|
H A D | symbol.h | 178 int dso__load_bfd_symbols(struct dso *dso, const char *debugfile);
|
H A D | symbol.c | 1555 int dso__load_bfd_symbols(struct dso *dso, const char *debugfile) in dso__load_bfd_symbols() argument 1565 abfd = bfd_openr(debugfile, NULL); in dso__load_bfd_symbols()
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | package.py | 807 debugfile = dvar + dest 816 bb.utils.mkdirhier(os.path.dirname(debugfile)) 833 bb.utils.mkdirhier(os.path.dirname(debugfile)) 835 … subprocess.check_output([objcopy, '--only-keep-debug', file, debugfile], stderr=subprocess.STDOUT) 838 …subprocess.check_output([objcopy, '--add-gnu-debuglink', debugfile, file], stderr=subprocess.STDOU… 856 debugfile = dvar + dest 860 bb.utils.mkdirhier(os.path.dirname(debugfile)) 875 bb.utils.mkdirhier(os.path.dirname(debugfile)) 878 shutil.copy2(file, debugfile) 898 debugfile = dvar + dest [all …]
|
/openbmc/openbmc/poky/bitbake/lib/ply/ |
H A D | yacc.py | 3043 check_recursion=1, optimize=0, write_tables=1, debugfile=debug_file,outputdir='', argument 3097 debuglog = PlyLogger(open(debugfile,"w"))
|