/bionic/tools/relocation_packer/src/ |
main.cc | 121 if (e_ident[EI_CLASS] == ELFCLASS32) { 130 } else if (e_ident[EI_CLASS] == ELFCLASS64) { 140 LOG(ERROR) << file << ": unknown ELFCLASS: " << e_ident[EI_CLASS];
|
elf_file_unittest.cc | 125 ASSERT_EQ(0, fseek(relocs_so, EI_CLASS, SEEK_SET)) 161 ASSERT_EQ(0, fseek(packed_relocs_so, EI_CLASS, SEEK_SET))
|
/external/elfutils/src/libdw/ |
dwarf_frame_cfa.c | 65 fs->cache->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8, 4,
|
encoded-value.h | 54 return e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8; 76 width = width ?: cache->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
|
dwarf_frame_register.c | 100 unsigned int address_size = (fs->cache->e_ident[EI_CLASS] == ELFCLASS32
|
cie.c | 125 = cache->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
|
dwarf_next_cfi.c | 138 uint_fast8_t address_size = e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
|
/external/elfutils/src/libelf/ |
elf-knowledge.h | 102 && (Ehdr)->e_ident[EI_CLASS] == ELFCLASS64) ? 8 : 4)
|
common.h | 53 int eclass = (int) ((unsigned char *) buf)[EI_CLASS];
|
elf_begin.c | 90 bool is32 = e_ident[EI_CLASS] == ELFCLASS32; 252 if (unlikely ((e_ident[EI_CLASS] != ELFCLASS32 253 && e_ident[EI_CLASS] != ELFCLASS64) 270 if (e_ident[EI_CLASS] == ELFCLASS32) 298 elf->class = e_ident[EI_CLASS]; 300 if (e_ident[EI_CLASS] == ELFCLASS32) 570 if ((size_t) nread >= (mem.header[EI_CLASS] == ELFCLASS32 [all...] |
/external/compiler-rt/lib/asan/ |
asanwrapper.cc | 34 const size_t kBufSize = EI_CLASS + 1; 46 bool is_64bit = buf[EI_CLASS] == ELFCLASS64;
|
/external/google-breakpad/src/common/linux/ |
elfutils.cc | 58 assert(elf_header->e_ident[EI_CLASS] == ElfClass::kClass); 93 assert(elf_header->e_ident[EI_CLASS] == ElfClass::kClass); 118 return elf_header->e_ident[EI_CLASS];
|
/system/core/debuggerd/ |
elf_utils.cpp | 114 if (e_ident[EI_CLASS] == ELFCLASS32) { 116 } else if (e_ident[EI_CLASS] == ELFCLASS64) {
|
/external/lldb/source/Plugins/ObjectFile/ELF/ |
ELFHeader.h | 84 return e_ident[llvm::ELF::EI_CLASS] == llvm::ELF::ELFCLASS32; 93 return e_ident[llvm::ELF::EI_CLASS] == llvm::ELF::ELFCLASS64;
|
/external/elfutils/src/libdwfl/ |
linux-proc-maps.c | 67 unsigned char buf[EI_CLASS + 1]; 73 || (buf[EI_CLASS] != ELFCLASS64 && buf[EI_CLASS] != ELFCLASS32)) 76 return buf[EI_CLASS];
|
elf-from-memory.c | 121 switch (buffer[EI_CLASS]) 202 switch (ehdr.e32.e_ident[EI_CLASS]) 281 switch (ehdr.e32.e_ident[EI_CLASS])
|
/external/libunwind/src/coredump/ |
_UCD_create.c | 114 if (elf_header32.e_ident[EI_CLASS] != ELFCLASS32 115 && elf_header32.e_ident[EI_CLASS] != ELFCLASS64) 127 _64bits = (elf_header32.e_ident[EI_CLASS] == ELFCLASS64);
|
/external/libunwind/src/ |
elfxx.h | 93 && e_ident[EI_CLASS] == ELF_CLASS && e_ident[EI_VERSION] != EV_NONE 111 return e_ident[EI_CLASS] == ELF_CLASS && e_ident[EI_VERSION] != EV_NONE
|
/external/elfutils/src/libasm/ |
asm_begin.c | 103 ehdr->e_ident[EI_CLASS] = class;
|
/external/elfutils/src/tests/ |
asm-tst1.c | 39 [EI_CLASS] = ELFCLASS32,
|
asm-tst2.c | 39 [EI_CLASS] = ELFCLASS32,
|
saridx.c | 202 ehdr.e_ident[EI_CLASS] == ELFCLASS32
|
/cts/libs/deviceutil/src/android/cts/util/ |
ReadElf.java | 36 private static final int EI_CLASS = 4; 232 int elfClass = mBuffer[EI_CLASS]; 238 throw new IOException("Invalid ELF EI_CLASS: " + elfClass + ": " + mPath); 265 throw new IOException("Invalid e_machine/EI_CLASS ELF combination: " +
|
/external/valgrind/coregrind/ |
launcher-linux.c | 202 if (n_bytes >= sizeof(Elf32_Ehdr) && header[EI_CLASS] == ELFCLASS32) { 238 } else if (n_bytes >= sizeof(Elf64_Ehdr) && header[EI_CLASS] == ELFCLASS64) {
|
/ndk/sources/android/crazy_linker/src/ |
crazy_linker_elf_loader.cpp | 119 if (header_.e_ident[EI_CLASS] != ELF::kElfClass) { 122 header_.e_ident[EI_CLASS]);
|