HomeSort by relevance Sort by last modified time
    Searched refs:e_type (Results 226 - 250 of 268) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
obj_int_extract.c 262 ENDIAN_ASSIGN_IN_PLACE(elf->hdr32.e_type);
279 ENDIAN_ASSIGN_IN_PLACE(elf->hdr64.e_type);
  /external/elfutils/0.153/libdwfl/
linux-kernel-modules.c 249 mod->e_type = ET_DYN;
292 if (!m->gc && m->e_type != ET_REL && !strcmp (m->name, "kernel"))
libdwflP.h 167 GElf_Half e_type; /* GElf_Ehdr.e_type cache. */ member in struct:Dwfl_Module
dwfl_segment_report_module.c 534 name = ehdr.e32.e_type == ET_EXEC ? "[exe]" : execlike ? "[pie]" : "[dso]";
  /external/elfutils/0.153/src/
ld.h 260 && FILEINFO_EHDR (file->ehdr).e_type == ET_REL);
267 && FILEINFO_EHDR (file->ehdr).e_type == ET_DYN);
    [all...]
elfcmp.c 201 || ehdr1->e_type != ehdr2->e_type
316 && ehdr1->e_type != ET_REL)
ldgeneric.c 122 /* We have to read the 'e_type' field. It has the same size (16
124 XElf_Half e_type; local
126 return (pread (fd, &e_type, sizeof (e_type), offsetof (XElf_Ehdr, e_type))
127 == sizeof (e_type)
128 && e_type == ET_DYN);
596 bool old_in_dso = FILEINFO_EHDR (oldp->file->ehdr).e_type == ET_DYN;
597 bool new_in_dso = FILEINFO_EHDR (fileinfo->ehdr).e_type == ET_DYN;
    [all...]
findtextrel.c 255 if (ehdr->e_type != ET_DYN)
readelf.c 661 if (ehdr->e_type == ET_REL && print_unrelocated)
728 print_file_type (unsigned short int e_type)
730 if (likely (e_type <= ET_CORE))
740 puts (gettext (knowntypes[e_type]));
742 else if (e_type >= ET_LOOS && e_type <= ET_HIOS)
743 printf (gettext ("OS Specific: (%x)\n"), e_type);
744 else if (e_type >= ET_LOPROC /* && e_type <= ET_HIPROC always true */)
745 printf (gettext ("Processor Specific: (%x)\n"), e_type);
    [all...]
  /external/libvpx/libvpx/build/make/
obj_int_extract.c 262 ENDIAN_ASSIGN_IN_PLACE(elf->hdr32.e_type);
279 ENDIAN_ASSIGN_IN_PLACE(elf->hdr64.e_type);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
obj_int_extract.c 262 ENDIAN_ASSIGN_IN_PLACE(elf->hdr32.e_type);
279 ENDIAN_ASSIGN_IN_PLACE(elf->hdr64.e_type);
  /external/chromium_org/components/nacl/loader/nonsfi/
elf_loader.cc 67 if (ehdr.e_type != ET_DYN) {
  /external/lldb/source/Plugins/ObjectFile/ELF/
ELFHeader.cpp 118 // Read e_type and e_machine.
119 if (data.GetU16(offset, &e_type, 2) == NULL)
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 273 if (Header->e_type == ELF::ET_REL)
516 if (EF.getHeader()->e_type != ELF::ET_REL)
578 if (Header->e_type == ELF::ET_REL) {
593 assert(EF.getHeader()->e_type == ELF::ET_REL &&
    [all...]
ELFTypes.h 411 Elf_Half e_type; // Type of file (see ET_*) member in struct:llvm::object::Elf_Ehdr_Impl
  /external/qemu/include/hw/
elf_ops.h 3 bswap16s(&ehdr->e_type); /* Object file type */
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 295 type = hdr->e_type;
297 type = mcld::bswap16(hdr->e_type);
816 type = hdr->e_type;
818 type = mcld::bswap16(hdr->e_type);
    [all...]
  /external/ltrace/
ltrace-elf.c 389 if (lte->ehdr.e_type != ET_EXEC && lte->ehdr.e_type != ET_DYN) {
1153 if (main && lte.ehdr.e_type == ET_DYN) {
    [all...]
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 61 Y->Header.Type = Obj.getHeader()->e_type;
  /ndk/sources/host-tools/ndk-stack/elff/
elf_file.cc 169 is_exec_ = elf_hdr->e_type == 2;
  /external/elfutils/0.153/libelf/
elf_begin.c 370 CONVERT (elf->state.elf32.ehdr_mem.e_type);
456 CONVERT (elf->state.elf64.ehdr_mem.e_type);
    [all...]
abstract.h 56 TYPE_NAME (ElfW2(Bits, Ext##Half), e_type) \
  /external/qemu/include/
elf.h 1251 Elf32_Half e_type; member in struct:elf32_hdr
1268 Elf64_Half e_type; member in struct:elf64_hdr
    [all...]
  /art/runtime/
elf_file.cc 497 if (ET_DYN != header_->e_type) {
498 *error_msg = StringPrintf("Failed to find expected e_type value %d in %s, found %d",
501 header_->e_type);
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 169 Header.e_type = Doc.Header.Type;

Completed in 2189 milliseconds

1 2 3 4 5 6 7 8 91011