Searched refs:e_ident (Results 1 - 7 of 7) sorted by relevance

/bionic/tools/relocation_packer/src/
H A Dmain.cc108 uint8_t e_ident[EI_NIDENT]; local
109 if (TEMP_FAILURE_RETRY(read(fd.get(), e_ident, EI_NIDENT)) != EI_NIDENT) {
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]; local
H A Delf_file.cc159 const int endian = elf_header->e_ident[EI_DATA];
163 const int file_class = elf_header->e_ident[EI_CLASS];
/bionic/libc/bionic/
H A Ddl_iterate_phdr_static.cpp41 if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG) != 0) {
/bionic/libc/kernel/uapi/linux/
H A Delf.h171 unsigned char e_ident[EI_NIDENT]; member in struct:elf32_hdr
187 unsigned char e_ident[EI_NIDENT]; member in struct:elf64_hdr
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Delf.h171 unsigned char e_ident[EI_NIDENT]; member in struct:elf32_hdr
187 unsigned char e_ident[EI_NIDENT]; member in struct:elf64_hdr
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Delf.h171 unsigned char e_ident[EI_NIDENT]; member in struct:elf32_hdr
187 unsigned char e_ident[EI_NIDENT]; member in struct:elf64_hdr
/bionic/linker/
H A Dlinker_phdr.cpp215 if (memcmp(header_.e_ident, ELFMAG, SELFMAG) != 0) {
222 int elf_class = header_.e_ident[EI_CLASS];
243 if (header_.e_ident[EI_DATA] != ELFDATA2LSB) {
244 DL_ERR("\"%s\" not little-endian: %d", name_.c_str(), header_.e_ident[EI_DATA]);

Completed in 6654 milliseconds