Home | History | Annotate | Download | only in src

Lines Matching refs:e_ident

97   uint8_t* e_ident = (uint8_t*) ei->u.mapped.image;
99 && e_ident[EI_CLASS] == ELF_CLASS && e_ident[EI_VERSION] != EV_NONE
100 && e_ident[EI_VERSION] <= EV_CURRENT);
104 uint8_t e_ident[EI_NIDENT];
106 if (SELFMAG != elf_w (memory_read) (ei, start, e_ident, SELFMAG, false)) {
109 if (memcmp (e_ident, ELFMAG, SELFMAG) != 0) {
114 ei, start + SELFMAG, e_ident + SELFMAG, EI_NIDENT - SELFMAG, false)) {
117 return e_ident[EI_CLASS] == ELF_CLASS && e_ident[EI_VERSION] != EV_NONE
118 && e_ident[EI_VERSION] <= EV_CURRENT;