Home
last modified time | relevance | path

Searched refs:bfd (Results 1 – 25 of 91) sorted by relevance

1234

/external/oprofile/libopagent/
Dbfddefines.c19 bfd * bfd; in main() local
23 bfd = bfd_openr(args[1], NULL); in main()
24 if (bfd == NULL) { in main()
28 r = bfd_check_format(bfd, bfd_object); in main()
34 printf("#define BFD_TARGET_NAME \"%s\"\n", bfd->xvec->name); in main()
35 printf("#define BFD_ARCH %i\n", bfd_get_arch(bfd)); in main()
36 printf("#define BFD_MACH %lu\n", bfd_get_mach(bfd)); in main()
37 printf("#define BFD_PRINTABLE_NAME \"%s\"\n", bfd_printable_name(bfd)); in main()
Dopagent.c77 bfd * bfd; in define_bfd_vars() local
98 bfd = bfd_openr(mypath, NULL); in define_bfd_vars()
99 if (bfd == NULL) { in define_bfd_vars()
103 r = bfd_check_format(bfd, bfd_object); in define_bfd_vars()
108 _bfd_target_name = bfd->xvec->name; in define_bfd_vars()
109 _bfd_arch = bfd_get_arch(bfd); in define_bfd_vars()
110 _bfd_mach = bfd_get_mach(bfd); in define_bfd_vars()
/external/oprofile/opjitconv/
Dopjitconv.h99 bfd * open_elf(char const * filename);
102 asection * create_section(bfd * abfd, char const * section_name,
104 int fill_section_content(bfd * abfd, asection * section,
108 int init_debug_line_info(bfd * abfd);
109 int finalize_debug_line_info(bfd * abfd);
135 extern bfd * cur_bfd;
Dcreate_bfd.c75 asection * create_section(bfd * abfd, char const * section_name, in create_section()
133 int fill_section_content(bfd * abfd, asection * section, in fill_section_content()
250 bfd * open_elf(char const * filename) in open_elf()
252 bfd * abfd; in open_elf()
Ddebug_line.c440 int init_debug_line_info(bfd * abfd) in init_debug_line_info()
497 int finalize_debug_line_info(bfd * abfd) in finalize_debug_line_info()
/external/oprofile/libutil++/
Dbfd_support.h44 bfd * abfd;
109 find_separate_debug_file(bfd * ibfd,
115 bfd * open_bfd(std::string const & file);
118 bfd * fdopen_bfd(std::string const & file, int fd);
121 bfd * spu_open_bfd(std::string const name, int fd, uint64_t offset_to_spu_elf);
Dbfd_spu_support.cpp40 spu_bfd_iovec_open(bfd * nbfd, void * open_closure) in spu_bfd_iovec_open()
52 spu_bfd_iovec_close(bfd * nbfd, void * stream) in spu_bfd_iovec_close()
68 spu_bfd_iovec_pread(bfd * abfd, void * stream, void * buf, in spu_bfd_iovec_pread()
86 bfd *
90 bfd * nbfd = NULL; in spu_open_bfd()
Dbfd_support.cpp38 void check_format(string const & file, bfd ** ibfd) in check_format()
79 bool get_debug_link_info(bfd * ibfd, string & filename, unsigned long & crc32) in get_debug_link_info()
226 void fixup_linenr(bfd * abfd, asection * section, asymbol ** syms, in fixup_linenr()
264 bfd * open_bfd(string const & file) in open_bfd()
268 bfd * ibfd = bfd_openr(file.c_str(), NULL); in open_bfd()
280 bfd * fdopen_bfd(string const & file, int fd) in fdopen_bfd()
284 bfd * ibfd = bfd_fdopenr(file.c_str(), NULL, fd); in fdopen_bfd()
296 bool find_separate_debug_file(bfd * ibfd, string const & filepath_in, in find_separate_debug_file()
455 bfd * image_bfd = image_bfd_info->abfd; in translate_debuginfo_syms()
522 bfd * synth_bfd; in get_synth_symbols()
[all …]
Dop_bfd.h234 void get_symbols_from_file(bfd_info & bfd, size_t start,
259 uint process_symtab(bfd_info * bfd, uint start);
/external/oprofile/m4/
Dbinutils.m413 AC_CHECK_LIB(bfd, bfd_openr, LIBS="-lbfd $LIBS"; Z_LIB="",
15 dnl Use a different bfd function here so as not to use cached result from above
16 [AC_CHECK_LIB(bfd, bfd_fdopenr, LIBS="-lbfd -lz $LIBS"; Z_LIB="-lz",
17 [AC_MSG_ERROR([bfd library not found])], -lz)
30 [AC_LANG_PROGRAM([[#include <bfd.h>]],
31 [[asymbol * synthsyms; bfd * ibfd = 0;
Dcellspubfdsupport.m415 AC_CHECK_LIB(bfd, bfd_openr_iovec,
22 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <bfd.h>
25 [[struct bfd *nbfd = bfd_openr_iovec("some-file", "elf32-spu",
/external/wpa_supplicant_8/src/utils/
Dtrace.c26 static bfd *cached_abfd = NULL;
44 static bfd * open_bfd(const char *fname) in open_bfd()
46 bfd *abfd; in open_bfd()
72 static void read_syms(bfd *abfd) in read_syms()
124 static void find_addr_sect(bfd *abfd, asection *section, void *obj) in find_addr_sect()
154 bfd *abfd = cached_abfd; in wpa_trace_bfd_addr()
198 bfd *abfd = cached_abfd; in wpa_trace_bfd_addr2func()
/external/oprofile/libpp/
Dcallgraph_container.cpp91 get_symbol_by_filepos(op_bfd const & bfd, u32 bfd_offset, in get_symbol_by_filepos() argument
99 upper_bound(bfd.syms.begin(), bfd.syms.end(), tmpsym); in get_symbol_by_filepos()
101 if (it != bfd.syms.begin()) in get_symbol_by_filepos()
104 if (it == bfd.syms.end()) { in get_symbol_by_filepos()
116 << " for binary " << bfd.get_filename() << dec << endl; in get_symbol_by_filepos()
120 i = distance(bfd.syms.begin(), it); in get_symbol_by_filepos()
129 op_bfd const & bfd, u32 boff, image_name_id iid, in call_data() argument
131 : pc(p), profile(pr), b(bfd), boffset(boff), image(iid), in call_data()
/external/oprofile/
Dconfigure.in117 dnl bfd.h pre 1998 check only for gnu 2.xx series, so gcc 3.0 can't compile it
118 AC_MSG_CHECKING([whether bfd defines bool])
119 AC_TRY_COMPILE([#include <bfd.h>], [],
121 AC_MSG_RESULT([yes]); AC_DEFINE(TRUE_FALSE_ALREADY_DEFINED, 1, [whether bfd.h defines bool values]))
DChangeLog-200741 open the bfd file, don't open it in the '/' fs if a --root is given
74 * libutil++/bfd_spu_support.cpp: gcc 2.95.3 do not like struct bfd,
101 with --xml and --details, bfd open/close was done one time per
103 in the caller and cache bfd object, this work because --xml imply
105 we can open/close multiple time bfd object with --separate=library
108 * libpp/xml_utils.cpp: move bfd open ...
228 only when really needed, when opening a bfd file, when checking a
/external/clang/test/SemaCXX/
Dcxx0x-deleted-default-ctor.cpp71 bad_field_default bfd; // expected-error {{call to implicitly-deleted default constructor}} variable
/external/icu/icu4c/source/data/lang/
Dnnh.txt21 bfd{"Shwóŋò pafut"}
Dar_EG.txt25 bfd{"لغة البافوت"}
/external/llvm/docs/
DGoldPlugin.rst69 to install ``LLVMgold.so`` to ``/usr/lib/bfd-plugins`` for a seamless setup.
136 * Copy ``Release/lib/LLVMgold.so`` to ``$PREFIX/lib/bfd-plugins/``
/external/tcpdump/
DAndroid.mk8 print-atm.c print-beep.c print-bfd.c print-bgp.c \
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
Dcmspcs.c491 deltaC,deltah,dc,t,g,dh,rh,rc,rt,bfd; in cmsBFDdeltaE() local
532 bfd = sqrt(Sqr(deltaL)+Sqr(deltaC/dc)+Sqr(deltah/dh)+(rt*(deltaC/dc)*(deltah/dh))); in cmsBFDdeltaE()
534 return bfd; in cmsBFDdeltaE()
/external/oprofile/pp/
Doparchive.cpp163 bfd * ibfd = open_bfd(real_exe_name); in oparchive()
/external/tcpdump/win32/prj/
DGNUmakefile55 ../../print-bfd.o \
/external/bison/
DABOUT-NLS197 bfd | |
381 bfd | [] [] |
565 bfd | [] [] |
749 bfd | |
933 bfd | [] |
1117 bfd | [] | 6
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
Dfeature-tests.mak147 #include <bfd.h>

1234