| /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/expected/mips64/ |
| libtest-runpath.so.txt | 3 E_MACHINE EM_MIPS
|
| libtest.so.txt | 3 E_MACHINE EM_MIPS
|
| main.out.txt | 3 E_MACHINE EM_MIPS
|
| /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/expected/x86/ |
| libtest-rpath-multi.so.txt | 3 E_MACHINE EM_386
|
| libtest-rpath.so.txt | 3 E_MACHINE EM_386
|
| libtest-runpath-multi.so.txt | 3 E_MACHINE EM_386
|
| libtest-runpath.so.txt | 3 E_MACHINE EM_386
|
| main.out.txt | 3 E_MACHINE EM_386
|
| /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/expected/x86_64/ |
| libtest-rpath-multi.so.txt | 3 E_MACHINE EM_X86_64
|
| libtest-rpath.so.txt | 3 E_MACHINE EM_X86_64
|
| libtest-runpath-multi.so.txt | 3 E_MACHINE EM_X86_64
|
| libtest-runpath.so.txt | 3 E_MACHINE EM_X86_64
|
| main.out.txt | 3 E_MACHINE EM_X86_64
|
| /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/expected/arm64/ |
| main.out.txt | 3 E_MACHINE EM_AARCH64
|
| /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/expected/mips/ |
| main.out.txt | 3 E_MACHINE EM_MIPS
|
| /system/core/libunwindstack/ |
| Elf.cpp | 246 Elf32_Half e_machine; local 247 if (!memory->ReadFully(EI_NIDENT + sizeof(Elf32_Half), &e_machine, sizeof(e_machine))) { 251 machine_type_ = e_machine; 252 if (e_machine == EM_ARM) { 255 } else if (e_machine == EM_386) { 258 } else if (e_machine == EM_MIPS) { 263 ALOGI("32 bit elf that is neither arm nor x86 nor mips: e_machine = %d\n", e_machine); 267 Elf64_Half e_machine; local [all...] |
| /cts/common/device-side/util/src/com/android/compatibility/common/util/ |
| ReadElf.java | 251 int e_machine = readHalf(); local 252 if (e_machine != EM_386 && e_machine != EM_X86_64 && 253 e_machine != EM_AARCH64 && e_machine != EM_ARM && 254 e_machine != EM_MIPS && 255 e_machine != EM_QDSP6) { 256 throw new IOException("Invalid ELF e_machine: " + e_machine + ": " + mPath); 260 if ((e_machine == EM_386 && elfClass != ELFCLASS32) | [all...] |
| /development/vndk/tools/definition-tool/tests/ |
| test_elf.py | 66 e_machine=183, dt_rpath=['a'], dt_runpath=['b'], 91 self.assertEqual('EM_NONE', ELF(e_machine=0).elf_machine_name) 92 self.assertEqual('EM_386', ELF(e_machine=3).elf_machine_name) 93 self.assertEqual('EM_MIPS', ELF(e_machine=8).elf_machine_name) 94 self.assertEqual('EM_ARM', ELF(e_machine=40).elf_machine_name) 95 self.assertEqual('EM_X86_64', ELF(e_machine=62).elf_machine_name) 96 self.assertEqual('EM_AARCH64', ELF(e_machine=183).elf_machine_name) 117 'E_MACHINE\tEM_AARCH64\n' 136 'E_MACHINE\tEM_AARCH64\n' 156 self.assertEqual(183, res.e_machine) [all...] |
| /external/valgrind/coregrind/ |
| launcher-linux.c | 206 if (header.ehdr32.e_machine == EM_386 && 213 if (header.ehdr32.e_machine == EM_386 && 219 if (header.ehdr32.e_machine == EM_ARM && 225 if (header.ehdr32.e_machine == EM_MIPS && 232 if (header.ehdr32.e_machine == EM_PPC && 238 if (header.ehdr32.e_machine == EM_MIPS && 249 if (header.ehdr64.e_machine == EM_X86_64 && 256 if (header.ehdr64.e_machine == EM_X86_64 && 260 } else if (header.ehdr64.e_machine == EM_MIPS && 264 } else if (header.ehdr64.e_machine == EM_AARCH64 & [all...] |
| /external/elfutils/tests/ |
| newfile.c | 38 ehdr->e_machine, 117 ZERO_TEST (e_machine); 149 ZERO_TEST (e_machine);
|
| /external/minijail/ |
| elfparse.h | 30 Elf32_Half e_machine; /* Architecture */ member in struct:__anon30668 48 Elf64_Half e_machine; /* Architecture */ member in struct:__anon30669
|
| /external/syslinux/com32/include/sys/ |
| elf32.h | 64 Elf32_Half e_machine; member in struct:elf32_hdr
|
| elf64.h | 64 Elf64_Half e_machine; member in struct:elf64_hdr
|
| /test/suite_harness/common/util/src/com/android/compatibility/common/util/ |
| ReadElf.java | 648 int e_machine = readHalf(); local 649 if (e_machine != EM_386 650 && e_machine != EM_X86_64 651 && e_machine != EM_AARCH64 652 && e_machine != EM_ARM 653 && e_machine != EM_MIPS 654 && e_machine != EM_QDSP6) { 655 throw new IOException("Invalid ELF e_machine: " + e_machine + ": " + mPath); 659 if ((e_machine == EM_386 && elfClass != ELFCLASS32 [all...] |
| /development/python-packages/gdbrunner/ |
| __init__.py | 299 e_machine = ord(binary[0x13]) << 8 | ord(binary[0x12]) 300 if e_machine == 0x28: 303 elif e_machine == 0xB7: 306 elif e_machine == 0x03: 309 elif e_machine == 0x3E: 312 elif e_machine == 0x08: 318 raise RuntimeError("unknown architecture: 0x{:x}".format(e_machine))
|