/third_party/libunwind/libunwind/src/coredump/ |
H A D | _UCD_create.c | 142 cur->p_filesz = hdr64.p_filesz; in _UCD_create() 147 cur->backing_filesize = hdr64.p_filesz; in _UCD_create() 167 cur->p_filesz = hdr32.p_filesz; in _UCD_create() 198 (unsigned long long) cur->p_filesz, in _UCD_create() 202 if (cur->p_filesz < cur->p_memsz) in _UCD_create()
|
H A D | _UCD_elf_map_image.c | 40 /* Note: coredump file contains only phdr->p_filesz bytes. in CD_elf_map_image() 51 ei->size = phdr->p_filesz; in CD_elf_map_image() 52 size_t remainder_len = phdr->p_memsz - phdr->p_filesz; in CD_elf_map_image() 55 void *remainder_base = (char*) ei->image + phdr->p_filesz; in CD_elf_map_image() 61 * and if phdr->p_filesz !=0, first phdr->p_filesz bytes in coredump in CD_elf_map_image()
|
H A D | _UCD_access_mem.c | 58 if (addr_last >= phdr->p_vaddr + phdr->p_filesz) in _UCD_access_mem()
|
H A D | _UCD_corefile_elf.c | 58 *segment_size = phdr->p_filesz; in _UCD_elf_read_segment()
|
H A D | _UCD_get_mapinfo_linux.c | 88 && maps[i].end <= ui->phdrs[p].p_vaddr + ui->phdrs[p].p_filesz) in _handle_file_note()
|
H A D | _UCD_internal.h | 66 uoff_t p_filesz; member
|
/third_party/elfutils/tests/ |
H A D | dwfl-report-segment-contiguous.c | 52 .p_filesz = 0x100, in main() 69 .p_filesz = 0x100, in main()
|
H A D | vendorelf.c | 101 phdr.p_filesz = 0; in check_elf() 166 || phdr.p_filesz != 0 in check_elf()
|
H A D | alldts.c | 234 phdr[0].p_filesz = ehdr->e_phnum * elf32_fsize (ELF_T_PHDR, 1, EV_CURRENT); in main() 245 phdr[1].p_filesz = ndtflags * sizeof (Elf32_Dyn); in main()
|
H A D | update2.c | 116 phdr[0].p_filesz = ehdr->e_phnum * elf32_fsize (ELF_T_PHDR, 1, EV_CURRENT); in main()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_getcfi_elf.c | 130 Elf_Data *data = elf_getdata_rawchunk (elf, phdr->p_offset, phdr->p_filesz, in getcfi_gnu_eh_frame() 144 const uint8_t *search_table = parse_eh_frame_hdr (data->d_buf, phdr->p_filesz, in getcfi_gnu_eh_frame() 154 dmax = phdr->p_filesz - (search_table - (const uint8_t *) data->d_buf); in getcfi_gnu_eh_frame() 185 cfi->search_table_len = phdr->p_filesz; in getcfi_gnu_eh_frame()
|
/third_party/elfutils/libdwfl/ |
H A D | elf-from-memory.c | 248 GElf_Xword filesz = class32 ? (*p32)[i].p_filesz : (*p64)[i].p_filesz; in elf_from_remote_memory() 304 GElf_Xword filesz = class32 ? (*p32)[i].p_filesz : (*p64)[i].p_filesz; in elf_from_remote_memory()
|
H A D | core-file.c | 248 *pend = (pphdr->p_offset + pphdr->p_filesz + align - 1) & -align; in update_end() 260 if (pphdr->p_filesz < pphdr->p_memsz) in do_more() 518 notes_phdr.p_filesz, in dwfl_core_file_report()
|
H A D | dwfl_segment_report_module.c | 482 GElf_Off file_trimmed_end = 0; /* Proper p_vaddr + p_filesz end. */ in dwfl_segment_report_module() 519 GElf_Xword filesz = is32 ? p32[i].p_filesz : p64[i].p_filesz; in dwfl_segment_report_module() 997 GElf_Xword filesz = is32 ? p32[i].p_filesz : p64[i].p_filesz; in dwfl_segment_report_module()
|
/third_party/elfutils/libelf/ |
H A D | gelf_update_phdr.c | 66 || unlikely (src->p_filesz > 0xffffffffull) in gelf_update_phdr() 102 COPY (p_filesz); in gelf_update_phdr()
|
H A D | elf32_getphdr.c | 164 CONVERT_TO (phdr[cnt].p_filesz, notcvt[cnt].p_filesz); in ElfW2() 214 CONVERT (phdr[cnt].p_filesz); in ElfW2()
|
H A D | gelf_getphdr.c | 98 COPY (p_filesz); in gelf_getphdr()
|
/third_party/toybox/toys/posix/ |
H A D | file.c | 132 long long p_offset, p_filesz; in do_elf_file() local 139 p_filesz = elf_int(phdr+16*j, 4*j); in do_elf_file() 142 if (p_offset+p_filesz>TT.len) goto bad; in do_elf_file() 143 printf(", dynamic (%.*s)", (int)p_filesz, map+p_offset); in do_elf_file()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | b64.rs | 16 pub p_filesz: ::Elf64_Xword,
|
H A D | b32.rs | 15 pub p_filesz: ::Elf32_Word,
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | x86.rs | 15 pub p_filesz: ::Elf32_Word,
|
/third_party/libunwind/libunwind/src/dwarf/ |
H A D | Gfind_unwind_table.c | 78 if ((uintptr_t) edi->ei.image + phdr->p_filesz > max_load_addr) in dwarf_find_unwind_table() 79 max_load_addr = (uintptr_t) edi->ei.image + phdr->p_filesz; in dwarf_find_unwind_table()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/runtime/ |
H A D | tls.rs | 36 file_size: (*tls_phdr).p_filesz,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | ELF.cpp | 512 Phdr.p_filesz / sizeof(Elf_Dyn)); in dynamicEntries() 513 DynSecSize = Phdr.p_filesz; in dynamicEntries() 580 if (Delta >= Phdr.p_filesz) in toMappedAddr()
|
/third_party/mesa3d/src/util/ |
H A D | build_id.c | 80 ptrdiff_t len = info->dlpi_phdr[i].p_filesz; in build_id_find_nhdr_callback()
|