Lines Matching defs:newPhdr
229 Elf64_Phdr *newPhdr = reinterpret_cast<Elf64_Phdr *>(newEhdr + 1);
230 char *shStrBuff = reinterpret_cast<char *>(newPhdr + 1);
275 Elf64_Phdr *newPhdr = reinterpret_cast<Elf64_Phdr *>(newEhdr + 1);
299 newPhdr->p_type = PT_LOAD;
300 newPhdr->p_flags = PF_X | PF_R;
301 newPhdr->p_offset = textAddr - info.fileAddr;
302 newPhdr->p_vaddr = textAddr;
303 newPhdr->p_paddr = textAddr;
304 newPhdr->p_filesz = textSize;
305 newPhdr->p_memsz = textSize;
306 newPhdr->p_align = 0x1000;
396 Elf64_Phdr *newPhdr = reinterpret_cast<Elf64_Phdr *>(newEhdr + 1);
397 const char *shStrBuff = reinterpret_cast<const char *>(newPhdr + 1);