HomeSort by relevance Sort by last modified time
    Searched refs:sh_type (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/elfutils/libebl/
eblcheckreloctargettype.c 37 ebl_check_reloc_target_type (Ebl *ebl, Elf64_Word sh_type)
39 if (ebl->check_reloc_target_type (ebl, sh_type))
42 switch (sh_type)
eblsectionstripp.c 49 if (shdr->sh_type == SHT_RELA || shdr->sh_type == SHT_REL)
  /external/elfutils/libelf/
elf-knowledge.h 41 && (shdr)->sh_type != SHT_NOTE \
42 && (((shdr)->sh_type) != SHT_PROGBITS \
61 ((Shdr)->sh_type == SHT_REL || (Shdr)->sh_type == SHT_RELA \
elf_compress_gnu.c 60 Elf64_Word sh_type; local
69 sh_type = shdr->sh_type;
79 sh_type = shdr->sh_type;
89 if (sh_type == SHT_NULL || sh_type == SHT_NOBITS)
197 __libelf_data_type (elf, sh_type));
elf32_getchdr.c 57 if (shdr->sh_type == SHT_NULL
58 || shdr->sh_type == SHT_NOBITS)
elf_compress.c 345 Elf64_Word sh_type; local
354 sh_type = shdr->sh_type;
364 sh_type = shdr->sh_type;
374 if (sh_type == SHT_NULL || sh_type == SHT_NOBITS)
507 __libelf_data_type (elf, sh_type));
elf32_offscn.c 82 && runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_type != SHT_NOBITS)
gelf_getshdr.c 71 COPY (sh_type);
gelf_update_shdr.c 77 COPY (sh_type);
  /external/elfutils/libdwelf/
dwelf_scn_gnu_compressed_size.c 48 || shdr.sh_type == SHT_NULL
49 || shdr.sh_type == SHT_NOBITS)
  /toolchain/binutils/binutils-2.27/gold/
copy-relocs.cc 36 template<int sh_type, int size, bool big_endian>
38 Copy_relocs<sh_type, size, big_endian>::copy_reloc(
48 Output_data_reloc<sh_type, true, size, big_endian>* reloc_section)
64 template<int sh_type, int size, bool big_endian>
66 Copy_relocs<sh_type, size, big_endian>::need_copy_reloc(
89 template<int sh_type, int size, bool big_endian>
91 Copy_relocs<sh_type, size, big_endian>::emit_copy_reloc(
96 Output_data_reloc<sh_type, true, size, big_endian>* reloc_section)
108 template<int sh_type, int size, bool big_endian>
110 Copy_relocs<sh_type, size, big_endian>::make_copy_reloc
    [all...]
copy-relocs.h 46 // The template parameter SH_TYPE is the type of the reloc section to
49 template<int sh_type, int size, bool big_endian>
53 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reloc;
77 Output_data_reloc<sh_type, true, size, big_endian>*);
87 emit(Output_data_reloc<sh_type, true, size, big_endian>*);
93 Output_data_reloc<sh_type, true, size, big_endian>*);
127 Output_data_reloc<sh_type, true, size, big_endian>*);
reloc.cc 283 unsigned int sh_type = shdr.get_sh_type(); local
284 if (sh_type != elfcpp::SHT_REL && sh_type != elfcpp::SHT_RELA)
329 if (sh_type == elfcpp::SHT_REL)
355 sr.sh_type = sh_type;
410 p->data_shndx, p->sh_type,
463 p->sh_type, p->contents->data(),
479 p->data_shndx, p->sh_type,
525 p->sh_type,
914 unsigned int sh_type = shdr.get_sh_type(); local
    [all...]
mapfile.cc 364 unsigned int sh_type = relobj->section_type(i); local
365 if ((sh_type == elfcpp::SHT_PROGBITS
366 || sh_type == elfcpp::SHT_NOBITS
367 || sh_type == elfcpp::SHT_GROUP)
  /external/elfutils/backends/
arm_symbol.c 128 arm_check_reloc_target_type (Ebl *ebl __attribute__ ((unused)), Elf64_Word sh_type)
130 return sh_type == SHT_ARM_EXIDX;
ia64_symbol.c 154 ia64_check_reloc_target_type (Ebl *ebl __attribute__ ((unused)), Elf64_Word sh_type)
156 return sh_type == SHT_IA_64_UNWIND;
  /external/google-breakpad/src/common/linux/
elfutils-inl.h 63 if (sections[i].sh_type == section_type &&
  /external/swiftshader/third_party/LLVM/test/Scripts/
elf-dump 57 self.sh_type = f.read32()
69 print " ('sh_type', %s)" % common_dump.HexDump(self.sh_type)
78 if self.sh_type[0] == 2: # SHT_SYMTAB
82 elif self.sh_type[0] == 4 or self.sh_type[0] == 9: # SHT_RELA / SHT_REL
84 dumpRel(f, self, self.sh_type[0] == 4)
88 if self.sh_type != 8: # != SHT_NOBITS
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReadElf.java 298 long sh_type = readWord(); local
305 if (sh_type == SHT_STRTAB) {
320 long sh_type = readWord(); local
326 if (sh_type == SHT_SYMTAB || sh_type == SHT_DYNSYM) {
335 } else if (sh_type == SHT_STRTAB) {
344 } else if (sh_type == SHT_DYNAMIC) {
  /system/core/libunwindstack/tests/
ElfTestUtils.cpp 75 shdr.sh_type = SHT_NULL;
86 shdr.sh_type = SHT_STRTAB;
126 shdr.sh_type = SHT_PROGBITS;
GenGnuDebugdata.cpp 59 shdr.sh_type = SHT_NULL;
64 shdr.sh_type = SHT_PROGBITS;
74 shdr.sh_type = SHT_STRTAB;
  /toolchain/binutils/binutils-2.27/bfd/
elf32-sh64-com.c 117 && elf_section_data (cranges)->this_hdr.sh_type == SHT_SH5_CR_SORTED)
126 if (elf_section_data (cranges)->this_hdr.sh_type
141 elf_section_data (cranges)->this_hdr.sh_type = SHT_SH5_CR_SORTED;
  /toolchain/binutils/binutils-2.27/include/elf/
external.h 114 unsigned char sh_type[4]; /* Type of section */ member in struct:__anon4679
127 unsigned char sh_type[4]; /* Type of section */ member in struct:__anon4680
internal.h 103 unsigned int sh_type; /* Type of section */ member in struct:elf_internal_shdr
304 && (sec_hdr)->sh_type == SHT_NOBITS \
337 && ((sec_hdr)->sh_type == SHT_NOBITS \
359 || (((sec_hdr)->sh_type == SHT_NOBITS \
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 262 assert(SymTable->sh_type == ELF::SHT_SYMTAB ||
263 SymTable->sh_type == ELF::SHT_DYNSYM);
380 return getSection(Sec)->sh_type;
611 EShdr->sh_type == ELF::SHT_PROGBITS;
618 EShdr->sh_type == ELF::SHT_NOBITS;
623 return getSection(Sec)->sh_type == ELF::SHT_NOBITS;
641 if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
662 uintX_t Type = EShdr->sh_type;
683 if (sec->sh_type == ELF::SHT_REL
    [all...]

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011