HomeSort by relevance Sort by last modified time
    Searched defs:phdrs (Results 1 - 13 of 13) sorted by null

  /external/google-breakpad/src/common/linux/
elfutils.cc 95 const Phdr* phdrs = local
99 if (phdrs[i].p_type == segment_type) {
100 *segment_start = elf_base + phdrs[i].p_offset;
101 *segment_size = phdrs[i].p_filesz;
  /external/libunwind/src/coredump/
_UCD_internal.h 57 /* Similar to ELF phdrs. p_paddr element is absent,
90 coredump_phdr_t *phdrs; /* array, allocated */ member in struct:UCD_info
_UCD_create.c 149 Debug(0, "Can't read phdrs from '%s'\n", filename);
153 coredump_phdr_t *phdrs = ui->phdrs = memset(malloc(size * sizeof(phdrs[0])), 0, size * sizeof(phdrs[0])); local
156 coredump_phdr_t *cur = phdrs;
163 Debug(0, "Can't read phdrs from '%s'\n", filename);
182 coredump_phdr_t *cur = phdrs;
189 Debug(0, "Can't read phdrs from '%s'\n", filename);
209 coredump_phdr_t *cur = phdrs;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
elf-fdpic.h 39 struct elf_phdr *phdrs; /* ref copy of PT_PHDR table */ member in struct:elf_fdpic_params
  /toolchain/binutils/binutils-2.27/gold/
script-c.h 131 String_list_ptr phdrs; member in struct:gold::Parser_output_section_trailer
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 121 const StringList& phdrs() const { function in struct:mcld::OutputSectDesc::Epilog
  /external/elfutils/libdwfl/
dwfl_module_getdwarf.c 150 their phdrs might not match the actual load addresses. */
304 /* Decode the section. It consists of the original ehdr, phdrs,
363 For this reason, we must examine the phdrs first to find PT_INTERP. */
394 void *phdrs = malloc (phdrs_bytes); local
395 if (unlikely (phdrs == NULL))
397 dst.d_buf = phdrs;
402 free (phdrs);
407 Elf32_Phdr (*p32)[phnum] = phdrs;
417 Elf64_Phdr (*p64)[phnum] = phdrs;
425 free (phdrs);
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldgram.y 80 bfd_boolean phdrs;
128 %token SECTIONS PHDRS INSERT_K AFTER BEFORE
316 | phdrs
1196 phdrs: label
1197 PHDRS '{' phdr_list '}'
1210 lang_new_phdr ($1, $3, $4.filehdr, $4.phdrs, $4.at,
1269 else if (strcmp ($1, "PHDRS") == 0 && $2 == NULL)
1270 $$.phdrs = TRUE;
1274 einfo (_("%X%P:%S: PHDRS syntax error at `%s'\n"),
ldlang.h 153 lang_output_section_phdr_list *phdrs; member in struct:lang_output_section_statement_struct
437 PHDRS command in the linker script. */
445 bfd_boolean phdrs; member in struct:lang_phdr
  /art/compiler/linker/
elf_builder.h 674 std::vector<Elf_Phdr> phdrs; local
676 phdrs = MakeProgramHeaders();
677 CHECK_LE(phdrs.size(), kMaxProgramHeaders);
679 elf_header.e_phnum = phdrs.size();
684 stream_.WriteFully(phdrs.data(), phdrs.size() * sizeof(phdrs[0]));
930 std::vector<Elf_Phdr> phdrs; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 876 char *phdrs = base + ehdr->e_phoff; local
877 char *phdrs_end = phdrs + ehdr->e_phnum * ehdr->e_phentsize;
883 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
892 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf.c 5030 Elf_Internal_Phdr *phdrs; local
5502 Elf_Internal_Phdr *phdrs; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
readelf.c 4706 Elf32_External_Phdr * phdrs; local
4750 Elf64_External_Phdr * phdrs; local
4796 Elf_Internal_Phdr * phdrs; local
    [all...]

Completed in 847 milliseconds