Searched refs:abfd (Results 1 - 5 of 5) sorted by relevance

/linux-master/tools/build/feature/
H A Dtest-libbfd-buildid.c6 bfd *abfd = bfd_openr("Pedro", 0); local
7 return abfd && (!abfd->build_id || abfd->build_id->size > 0x506564726f);
H A Dtest-disassembler-four-args.c7 bfd *abfd = bfd_openr(NULL, NULL); local
9 disassembler(bfd_get_arch(abfd),
10 bfd_big_endian(abfd),
11 bfd_get_mach(abfd),
12 abfd); local
/linux-master/tools/perf/util/
H A Dsrcline.c150 bfd *abfd; member in struct:a2l_data
169 static int slurp_symtab(bfd *abfd, struct a2l_data *a2l) argument
176 if ((bfd_get_file_flags(abfd) & HAS_SYMS) == 0)
177 return bfd_error(bfd_get_filename(abfd));
179 storage = bfd_get_symtab_upper_bound(abfd);
181 storage = bfd_get_dynamic_symtab_upper_bound(abfd);
185 return bfd_error(bfd_get_filename(abfd));
189 symcount = bfd_canonicalize_dynamic_symtab(abfd, syms);
191 symcount = bfd_canonicalize_symtab(abfd, syms);
195 return bfd_error(bfd_get_filename(abfd));
202 find_address_in_section(bfd *abfd, asection *section, void *data) argument
245 bfd *abfd; local
[all...]
H A Dsymbol-elf.c942 bfd *abfd; local
944 abfd = bfd_openr(filename, NULL);
945 if (!abfd)
948 if (!bfd_check_format(abfd, bfd_object)) {
953 if (!abfd->build_id || abfd->build_id->size > size)
956 memcpy(bid->data, abfd->build_id->data, abfd->build_id->size);
957 memset(bid->data + abfd->build_id->size, 0, size - abfd
1089 bfd *abfd; local
[all...]
H A Dsymbol.c1601 bfd *abfd; local
1604 abfd = bfd_openr(debugfile, NULL);
1605 if (!abfd)
1608 if (!bfd_check_format(abfd, bfd_object)) {
1614 if (bfd_get_flavour(abfd) == bfd_target_elf_flavour)
1617 symbols_size = bfd_get_symtab_upper_bound(abfd);
1619 bfd_close(abfd);
1630 symbols_count = bfd_canonicalize_symtab(abfd, symbols);
1634 section = bfd_get_section_by_name(abfd, ".text");
1694 bfd_close(abfd);
[all...]

Completed in 265 milliseconds