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

/frameworks/compile/linkloader/include/
H A DELFHeader.h43 byte_t e_ident[EI_NIDENT]; member in class:ELFHeader
63 return e_ident[EI_CLASS];
67 return e_ident[EI_DATA];
71 return e_ident[EI_VERSION];
75 return e_ident[EI_OSABI];
79 return e_ident[EI_ABIVERSION];
83 return e_ident[EI_CLASS] == ELFCLASS32;
87 return e_ident[EI_CLASS] == ELFCLASS64;
91 return e_ident[EI_DATA] == ELFDATA2MSB;
95 return e_ident[EI_DAT
183 AR & e_ident; local
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DELFWriter.cpp47 memcpy(header->e_ident, ElfMagic, EI_MAG3+1);
49 header->e_ident[EI_CLASS] = ELFCLASS32;
50 header->e_ident[EI_DATA] = pBackend.isLittleEndian()?
52 header->e_ident[EI_VERSION] = pBackend.ELFVersion();
53 header->e_ident[EI_OSABI] = pBackend.OSABI();
54 header->e_ident[EI_ABIVERSION] = pBackend.ABIVersion();
72 header->e_version = header->e_ident[EI_VERSION];
98 memcpy(header->e_ident, ElfMagic, EI_MAG3+1);
100 header->e_ident[EI_CLASS] = ELFCLASS64;
101 header->e_ident[EI_DAT
[all...]

Completed in 47 milliseconds