Home | History | Annotate | Download | only in libdwfl

Lines Matching defs:phdrs

179     /* We already have all the phdrs from the initial read.  */
207 } phdrs;
209 xlateto.d_buf = &phdrs;
210 xlateto.d_size = sizeof phdrs;
241 if (phdrs.p32[i].p_type == PT_LOAD)
242 handle_segment (phdrs.p32[i].p_vaddr, phdrs.p32[i].p_offset,
243 phdrs.p32[i].p_filesz, phdrs.p32[i].p_align);
251 if (phdrs.p64[i].p_type == PT_LOAD)
252 handle_segment (phdrs.p64[i].p_vaddr, phdrs.p64[i].p_offset,
253 phdrs.p64[i].p_filesz, phdrs.p64[i].p_align);
298 if (phdrs.p32[i].p_type == PT_LOAD)
299 if (handle_segment (phdrs.p32[i].p_vaddr, phdrs.p32[i].p_offset,
300 phdrs.p32[i].p_filesz, phdrs.p32[i].p_align))
325 if (phdrs.p32[i].p_type == PT_LOAD)
326 if (handle_segment (phdrs.p64[i].p_vaddr, phdrs.p64[i].p_offset,
327 phdrs.p64[i].p_filesz, phdrs.p64[i].p_align))