Home
last modified time | relevance | path

Searched refs:abfd (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/tools/build/feature/
H A Dtest-disassembler-four-args.c7 bfd *abfd = bfd_openr(NULL, NULL); in main() local
9 disassembler(bfd_get_arch(abfd), in main()
10 bfd_big_endian(abfd), in main()
11 bfd_get_mach(abfd), in main()
12 abfd); in main()
H A Dtest-libbfd-buildid.c6 bfd *abfd = bfd_openr("Pedro", 0); in main() local
7 return abfd && (!abfd->build_id || abfd->build_id->size > 0x506564726f); in main()
/openbmc/linux/tools/perf/util/
H A Dsrcline.c150 bfd *abfd; member
169 static int slurp_symtab(bfd *abfd, struct a2l_data *a2l) in slurp_symtab() argument
176 if ((bfd_get_file_flags(abfd) & HAS_SYMS) == 0) in slurp_symtab()
177 return bfd_error(bfd_get_filename(abfd)); in slurp_symtab()
179 storage = bfd_get_symtab_upper_bound(abfd); in slurp_symtab()
181 storage = bfd_get_dynamic_symtab_upper_bound(abfd); in slurp_symtab()
185 return bfd_error(bfd_get_filename(abfd)); in slurp_symtab()
189 symcount = bfd_canonicalize_dynamic_symtab(abfd, syms); in slurp_symtab()
191 symcount = bfd_canonicalize_symtab(abfd, syms); in slurp_symtab()
195 return bfd_error(bfd_get_filename(abfd)); in slurp_symtab()
[all …]
H A Dsymbol-elf.c941 bfd *abfd; in read_build_id() local
943 abfd = bfd_openr(filename, NULL); in read_build_id()
944 if (!abfd) in read_build_id()
947 if (!bfd_check_format(abfd, bfd_object)) { in read_build_id()
952 if (!abfd->build_id || abfd->build_id->size > size) in read_build_id()
955 memcpy(bid->data, abfd->build_id->data, abfd->build_id->size); in read_build_id()
956 memset(bid->data + abfd->build_id->size, 0, size - abfd->build_id->size); in read_build_id()
957 err = bid->size = abfd->build_id->size; in read_build_id()
960 bfd_close(abfd); in read_build_id()
1088 bfd *abfd; in filename__read_debuglink() local
[all …]
H A Dsymbol.c1562 bfd *abfd; in dso__load_bfd_symbols() local
1565 abfd = bfd_openr(debugfile, NULL); in dso__load_bfd_symbols()
1566 if (!abfd) in dso__load_bfd_symbols()
1569 if (!bfd_check_format(abfd, bfd_object)) { in dso__load_bfd_symbols()
1575 if (bfd_get_flavour(abfd) == bfd_target_elf_flavour) in dso__load_bfd_symbols()
1578 symbols_size = bfd_get_symtab_upper_bound(abfd); in dso__load_bfd_symbols()
1580 bfd_close(abfd); in dso__load_bfd_symbols()
1591 symbols_count = bfd_canonicalize_symtab(abfd, symbols); in dso__load_bfd_symbols()
1595 section = bfd_get_section_by_name(abfd, ".text"); in dso__load_bfd_symbols()
1653 bfd_close(abfd); in dso__load_bfd_symbols()
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/
H A D0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch37 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
38 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
H A D0015-CVE-2024-53589.patch24 @@ -361,6 +361,7 @@ first_phase (bfd *abfd, int type, char *src, char * src_end)
32 @@ -368,20 +369,16 @@ first_phase (bfd *abfd, int type, char *src, char * src_end)
44 - insert_byte (abfd, HEX (src), addr);
55 + insert_byte (abfd, HEX (src), addr);
63 @@ -406,13 +403,16 @@ first_phase (bfd *abfd, int type, char *src, char * src_end)
84 @@ -455,6 +455,8 @@ first_phase (bfd *abfd, int type, char *src, char * src_end)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/crash/crash/
H A D0001-symbol-fix-S-cannot-work-with-kaslr-detection.patch43 @@ -817,7 +818,7 @@ store_symbols(bfd *abfd, int dynamic, void *minisyms, long symcount,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/geis/
H A D0001-provide-function-declaration-with-prototypes.patch494 index ac897ab..584abfd 100644