Lines Matching defs:ehdr
2803 Ehdr *ehdr = (void *)ldso.base;
2805 ldso.phnum = ehdr->e_phnum;
2806 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
2807 ldso.phentsize = ehdr->e_phentsize;
2980 Ehdr *ehdr = map_library(fd, &app, NULL);
2981 if (!ehdr) {
2988 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
3086 Ehdr *ehdr = (void *)vdso_base;
3087 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
3088 vdso.phnum = ehdr->e_phnum;
3089 vdso.phentsize = ehdr->e_phentsize;
3090 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {