Home | History | Annotate | Download | only in xxboot

Lines Matching defs:ph

147 		Elf32_Phdr ph;
160 read(io, &ph, sizeof(ph));
161 off += sizeof(ph);
162 if (ph.p_type != PT_LOAD)
165 while (off < ph.p_offset) {
170 read(io, (void *) hdr.elf.e_entry, ph.p_filesz);
171 memset((void *) (hdr.elf.e_entry + ph.p_filesz), 0,
172 ph.p_memsz - ph.p_filesz);