Searched refs:phdrs (Results 1 – 10 of 10) sorted by relevance
| /linux/drivers/soc/qcom/ |
| A D | mdt_loader.c | 78 const struct elf32_phdr *phdrs; in qcom_mdt_get_size() local 89 phdr = &phdrs[i]; in qcom_mdt_get_size() 127 const struct elf32_phdr *phdrs; in qcom_mdt_read_metadata() local 143 if (phdrs[0].p_type == PT_LOAD) in qcom_mdt_read_metadata() 158 ehdr_size = phdrs[0].p_filesz; in qcom_mdt_read_metadata() 206 const struct elf32_phdr *phdrs; in qcom_mdt_pas_init() local 221 phdr = &phdrs[i]; in qcom_mdt_pas_init() 281 if (!phdrs[i].p_filesz) in qcom_mdt_bins_are_split() 285 seg_end = phdrs[i].p_offset + phdrs[i].p_filesz; in qcom_mdt_bins_are_split() 318 phdr = &phdrs[i]; in __qcom_mdt_load() [all …]
|
| /linux/arch/parisc/boot/compressed/ |
| A D | misc.c | 237 Elf64_Phdr *phdrs, *phdr; in parse_elf() local 240 Elf32_Phdr *phdrs, *phdr; in parse_elf() 258 phdrs = malloc(sizeof(*phdrs) * ehdr.e_phnum); in parse_elf() 259 if (!phdrs) in parse_elf() 262 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum); in parse_elf() 265 phdr = &phdrs[i]; in parse_elf() 278 free(phdrs); in parse_elf()
|
| /linux/arch/x86/boot/compressed/ |
| A D | misc.c | 298 Elf64_Phdr *phdrs, *phdr; in parse_elf() local 301 Elf32_Phdr *phdrs, *phdr; in parse_elf() 315 phdrs = malloc(sizeof(*phdrs) * ehdr.e_phnum); in parse_elf() 316 if (!phdrs) in parse_elf() 319 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum); in parse_elf() 322 phdr = &phdrs[i]; in parse_elf() 342 free(phdrs); in parse_elf()
|
| /linux/fs/proc/ |
| A D | kcore.c | 386 struct elf_phdr *phdrs, *phdr; in read_kcore_iter() local 388 phdrs = kzalloc(phdrs_len, GFP_KERNEL); in read_kcore_iter() 389 if (!phdrs) { in read_kcore_iter() 394 phdrs[0].p_type = PT_NOTE; in read_kcore_iter() 395 phdrs[0].p_offset = notes_offset; in read_kcore_iter() 396 phdrs[0].p_filesz = notes_len; in read_kcore_iter() 398 phdr = &phdrs[1]; in read_kcore_iter() 416 if (copy_to_iter((char *)phdrs + *fpos - phdrs_offset, tsz, in read_kcore_iter() 418 kfree(phdrs); in read_kcore_iter() 422 kfree(phdrs); in read_kcore_iter()
|
| /linux/fs/ |
| A D | binfmt_elf_fdpic.c | 152 params->phdrs = kmalloc(size, GFP_KERNEL); in elf_fdpic_fetch_phdrs() 153 if (!params->phdrs) in elf_fdpic_fetch_phdrs() 161 phdr = params->phdrs; in elf_fdpic_fetch_phdrs() 229 phdr = exec_params.phdrs; in load_elf_fdpic_binary() 471 kfree(exec_params.phdrs); in load_elf_fdpic_binary() 473 kfree(interp_params.phdrs); in load_elf_fdpic_binary() 798 phdr = params->phdrs; in elf_fdpic_map_file() 824 phdr = params->phdrs; in elf_fdpic_map_file() 930 phdr = params->phdrs; in elf_fdpic_map_file_constdisp_on_uclinux() 951 phdr = params->phdrs; in elf_fdpic_map_file_constdisp_on_uclinux() [all …]
|
| A D | binfmt_elf.c | 1834 static int fill_note_info(struct elfhdr *elf, int phdrs, in fill_note_info() argument 1873 fill_elf_header(elf, phdrs, in fill_note_info() 1878 fill_elf_header(elf, phdrs, ELF_ARCH, ELF_CORE_EFLAGS); in fill_note_info()
|
| /linux/include/linux/ |
| A D | elf-fdpic.h | 30 struct elf_phdr *phdrs; /* ref copy of PT_PHDR table */ member
|
| /linux/drivers/remoteproc/ |
| A D | qcom_common.c | 279 const struct elf32_phdr *phdrs; in qcom_register_dump_segments() local 286 phdrs = (struct elf32_phdr *)(ehdr + 1); in qcom_register_dump_segments() 289 phdr = &phdrs[i]; in qcom_register_dump_segments()
|
| A D | qcom_q6v5_mss.c | 1331 const struct elf32_phdr *phdrs; in q6v5_mpss_load() local 1372 phdrs = (struct elf32_phdr *)(ehdr + 1); in q6v5_mpss_load() 1375 phdr = &phdrs[i]; in q6v5_mpss_load() 1420 phdr = &phdrs[i]; in q6v5_mpss_load() 1639 const struct elf32_phdr *phdrs; in qcom_q6v5_register_dump_segments() local 1656 phdrs = (struct elf32_phdr *)(ehdr + 1); in qcom_q6v5_register_dump_segments() 1660 phdr = &phdrs[i]; in qcom_q6v5_register_dump_segments()
|
| /linux/tools/perf/util/ |
| A D | symbol-elf.c | 2143 struct list_head phdrs; member 2148 list_for_each_entry((p), &(k)->phdrs, node) 2170 list_add_tail(&p->node, &kci->phdrs); in kcore_copy_info__addnew() 2179 list_for_each_entry_safe(p, tmp, &kci->phdrs, node) { in kcore_copy__free_phdrs() 2569 INIT_LIST_HEAD(&kci.phdrs); in kcore_copy()
|
Completed in 28 milliseconds