/external/oprofile/libopagent/ |
D | bfddefines.c | 19 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()
|
D | opagent.c | 77 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/ |
D | opjitconv.h | 99 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;
|
D | create_bfd.c | 75 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()
|
D | debug_line.c | 440 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++/ |
D | bfd_support.h | 44 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);
|
D | bfd_spu_support.cpp | 40 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()
|
D | bfd_support.cpp | 38 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 …]
|
D | op_bfd.h | 234 void get_symbols_from_file(bfd_info & bfd, size_t start, 259 uint process_symtab(bfd_info * bfd, uint start);
|
/external/oprofile/m4/ |
D | binutils.m4 | 13 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;
|
D | cellspubfdsupport.m4 | 15 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/ |
D | trace.c | 26 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/ |
D | callgraph_container.cpp | 91 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/ |
D | configure.in | 117 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]))
|
D | ChangeLog-2007 | 41 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/ |
D | cxx0x-deleted-default-ctor.cpp | 71 bad_field_default bfd; // expected-error {{call to implicitly-deleted default constructor}} variable
|
/external/icu/icu4c/source/data/lang/ |
D | nnh.txt | 21 bfd{"Shwóŋò pafut"}
|
D | ar_EG.txt | 25 bfd{"لغة البافوت"}
|
/external/llvm/docs/ |
D | GoldPlugin.rst | 69 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/ |
D | Android.mk | 8 print-atm.c print-beep.c print-bfd.c print-bgp.c \
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmspcs.c | 491 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/ |
D | oparchive.cpp | 163 bfd * ibfd = open_bfd(real_exe_name); in oparchive()
|
/external/tcpdump/win32/prj/ |
D | GNUmakefile | 55 ../../print-bfd.o \
|
/external/bison/ |
D | ABOUT-NLS | 197 bfd | | 381 bfd | [] [] | 565 bfd | [] [] | 749 bfd | | 933 bfd | [] | 1117 bfd | [] | 6
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/ |
D | feature-tests.mak | 147 #include <bfd.h>
|