HomeSort by relevance Sort by last modified time
    Searched refs:elf_class (Results 1 - 8 of 8) sorted by null

  /bionic/tools/relocation_packer/src/
elf_file_unittest.cc 127 uint8_t elf_class = 0; local
128 ASSERT_EQ(1U, fread(&elf_class, 1, 1, relocs_so));
130 if (elf_class == ELFCLASS32) {
163 uint8_t elf_class = 0; local
164 ASSERT_EQ(1U, fread(&elf_class, 1, 1, packed_relocs_so));
166 if (elf_class == ELFCLASS32) {
  /bionic/linker/
linker_phdr.cpp 207 int elf_class = header_.e_ident[EI_CLASS];
209 if (elf_class != ELFCLASS64) {
210 if (elf_class == ELFCLASS32) {
213 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
218 if (elf_class != ELFCLASS32) {
219 if (elf_class == ELFCLASS64) {
222 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.cc 153 int elf_class; local
155 &segment_start, &segment_size, &elf_class)) {
163 &dynstr_start, &dynstr_size, &elf_class)) {
  /external/v8/build/android/
resource_sizes.py 108 elf_class = re.split(r'\W+', elf_class_line)[1]
109 if elf_class == 'ELF32':
  /toolchain/binutils/binutils-2.25/binutils/
elfedit.c 574 elf_class (int mach)
680 input_elf_class = elf_class (input_elf_machine);
573 elf_class (int mach) function
readelf.c     [all...]
  /art/runtime/
elf_file.cc 441 uint8_t elf_class = (sizeof(Elf_Addr) == sizeof(Elf64_Addr)) ? ELFCLASS64 : ELFCLASS32; local
442 if (elf_class != header_->e_ident[EI_CLASS]) {
444 elf_class,
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader_cfi_unittest.cc 2355 int elf_class = cfi.AddressSize() == 4 ? ELFCLASS32 : ELFCLASS64; local
    [all...]

Completed in 585 milliseconds