Home
last modified time | relevance | path

Searched refs:phdrs (Results 1 – 4 of 4) sorted by relevance

/linux-3.4.99/arch/x86/boot/compressed/
Dmisc.c280 Elf64_Phdr *phdrs, *phdr; in parse_elf() local
283 Elf32_Phdr *phdrs, *phdr; in parse_elf()
300 phdrs = malloc(sizeof(*phdrs) * ehdr.e_phnum); in parse_elf()
301 if (!phdrs) in parse_elf()
304 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum); in parse_elf()
307 phdr = &phdrs[i]; in parse_elf()
325 free(phdrs); in parse_elf()
/linux-3.4.99/fs/
Dbinfmt_elf_fdpic.c137 params->phdrs = kmalloc(size, GFP_KERNEL); in elf_fdpic_fetch_phdrs()
138 if (!params->phdrs) in elf_fdpic_fetch_phdrs()
142 (char *) params->phdrs, size); in elf_fdpic_fetch_phdrs()
147 phdr = params->phdrs; in elf_fdpic_fetch_phdrs()
204 phdr = exec_params.phdrs; in load_elf_fdpic_binary()
448 kfree(exec_params.phdrs); in load_elf_fdpic_binary()
450 kfree(interp_params.phdrs); in load_elf_fdpic_binary()
758 if (params->phdrs[loop].p_type == PT_LOAD) in elf_fdpic_map_file()
811 phdr = params->phdrs; in elf_fdpic_map_file()
837 phdr = params->phdrs; in elf_fdpic_map_file()
[all …]
Dbinfmt_elf.c1483 static int fill_note_info(struct elfhdr *elf, int phdrs, in fill_note_info() argument
1524 fill_elf_header(elf, phdrs, in fill_note_info()
1716 static int fill_note_info(struct elfhdr *elf, int phdrs, in fill_note_info() argument
1753 fill_elf_header(elf, phdrs, ELF_ARCH, ELF_CORE_EFLAGS, ELF_OSABI); in fill_note_info()
/linux-3.4.99/include/linux/
Delf-fdpic.h39 struct elf_phdr *phdrs; /* ref copy of PT_PHDR table */ member