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 210 int elf_class = header_.e_ident[EI_CLASS];
212 if (elf_class != ELFCLASS64) {
213 if (elf_class == ELFCLASS32) {
216 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
221 if (elf_class != ELFCLASS32) {
222 if (elf_class == ELFCLASS64) {
225 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)) {
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py 858 def get_lib_dict(self, elf_class):
859 return self[elf_class - 1]
906 for elf_class in (ELF.ELFCLASS32, ELF.ELFCLASS64):
907 src = self.get_lib_in_elf_class(elf_class, src_path)
908 dst = self.get_lib_in_elf_class(elf_class, dst_path)
915 def get_lib_in_elf_class(self, elf_class, path, default=None):
917 res = self.lib_pt[partition].get_lib_dict(elf_class).get(path)
946 def _compute_lib_dict(self, elf_class):
949 res.update(lib_pt.get_lib_dict(elf_class))
    [all...]
  /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 446 uint8_t elf_class = (sizeof(Elf_Addr) == sizeof(Elf64_Addr)) ? ELFCLASS64 : ELFCLASS32; local
447 if (elf_class != header_->e_ident[EI_CLASS]) {
449 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 176 milliseconds