/external/chromium_org/build/mac/ |
D | change_mach_o_flags.py | 146 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \ 148 return magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags 160 cputype, cpusubtype, offset, size, align = struct.unpack('>5I', bytes) 161 return cputype, cpusubtype, offset, size, align 196 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \ 232 cputype, cpusubtype, offset, size, align = ReadFatArch(file)
|
/external/lldb/source/Host/common/ |
D | Host.cpp | 305 uint32_t cputype, cpusubtype; in GetArchitecture() local 313 len = sizeof (cpusubtype); in GetArchitecture() 314 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) != 0) in GetArchitecture() 315 cpusubtype = CPU_TYPE_ANY; in GetArchitecture() 327 if (cpusubtype == CPU_SUBTYPE_486) in GetArchitecture() 328 cpusubtype = CPU_SUBTYPE_I386_ALL; in GetArchitecture() 333 … g_host_arch_32.SetArchitecture (eArchTypeMachO, ~(CPU_ARCH_MASK) & cputype, cpusubtype); in GetArchitecture() 334 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() 339 g_host_arch_32.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() 341 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() [all …]
|
/external/lldb/tools/debugserver/source/MacOSX/arm/ |
D | DNBArchImpl.cpp | 698 uint32_t cpusubtype; in NumSupportedHardwareBreakpoints() local 699 len = sizeof(cpusubtype); in NumSupportedHardwareBreakpoints() 701 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0) in NumSupportedHardwareBreakpoints() 703 DNBLogThreadedIf(LOG_THREAD, "hw.cpusubtype=%d", cpusubtype); in NumSupportedHardwareBreakpoints() 704 if (cpusubtype == CPU_SUBTYPE_ARM_V7) in NumSupportedHardwareBreakpoints() 754 uint32_t cpusubtype; in NumSupportedHardwareWatchpoints() local 756 len = sizeof(cpusubtype); in NumSupportedHardwareWatchpoints() 758 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0) in NumSupportedHardwareWatchpoints() 760 DNBLogThreadedIf(LOG_THREAD, "hw.cpusubtype=0x%d", cpusubtype); in NumSupportedHardwareWatchpoints() 762 if (cpusubtype == CPU_SUBTYPE_ARM_V7) in NumSupportedHardwareWatchpoints()
|
/external/llvm/include/llvm/Object/ |
D | MachOUniversal.h | 57 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype); in getArchTypeName()
|
/external/lldb/source/Plugins/Process/mach-core/ |
D | ProcessMachCore.cpp | 154 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype); in GetDynamicLoaderAddress()
|
/external/valgrind/main/coregrind/ |
D | fixup_macho_loadcmds.c | 282 arch.cpusubtype = ntohl(arch_be->cpusubtype); in map_image_aboard()
|
/external/llvm/include/llvm/Support/ |
D | MachO.h | 533 uint32_t cpusubtype; member 543 uint32_t cpusubtype; member 921 uint32_t cpusubtype; member
|
/external/lldb/tools/debugserver/source/ |
D | RNBRemote.cpp | 3915 uint32_t cpusubtype; in HandlePacket_qHostInfo() local 3916 len = sizeof(cpusubtype); in HandlePacket_qHostInfo() 3917 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0) in HandlePacket_qHostInfo() 3921 cpusubtype == CPU_SUBTYPE_486) in HandlePacket_qHostInfo() 3922 cpusubtype = CPU_SUBTYPE_X86_64_ALL; in HandlePacket_qHostInfo() 3924 strm << "cpusubtype:" << std::dec << cpusubtype << ';'; in HandlePacket_qHostInfo() 4018 uint32_t cpusubtype; in HandlePacket_qProcessInfo() local 4019 size_t cpusubtype_len = sizeof(cpusubtype); in HandlePacket_qProcessInfo() 4020 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &cpusubtype_len, NULL, 0) == 0) in HandlePacket_qProcessInfo() 4022 if (cputype == CPU_TYPE_X86_64 && cpusubtype == CPU_SUBTYPE_486) in HandlePacket_qProcessInfo() [all …]
|
/external/llvm/lib/Object/ |
D | MachOUniversal.cpp | 37 sys::swapByteOrder(H.cpusubtype); in SwapStruct()
|
/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ |
D | ObjectContainerUniversalMachO.cpp | 201 … arch.SetArchitecture (eArchTypeMachO, m_fat_archs[idx].cputype, m_fat_archs[idx].cpusubtype); in GetArchitectureAtIndex()
|
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
D | DynamicLoaderMacOSXDYLD.h | 245 … return lldb_private::ArchSpec (lldb_private::eArchTypeMachO, header.cputype, header.cpusubtype); in GetArchitecture()
|
/external/lldb/examples/test/tmp/ |
D | lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dsym.txt | 24 com.apple.main-thread < 122> read packet: $cputype:16777223;cpusubtype:3;ostype:macosx;watchpoint_e…
|
D | lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dwarf.txt | 24 com.apple.main-thread < 122> read packet: $cputype:16777223;cpusubtype:3;ostype:macosx;watchpoint_e…
|
/external/valgrind/main/coregrind/m_ume/ |
D | macho.c | 743 arch.cpusubtype = VG_(ntohl)(arch.cpusubtype); in load_fat_file()
|
/external/lldb/source/Host/macosx/ |
D | Symbols.cpp | 75 const uint32_t cpusubtype = data.GetU32(&data_offset); // machine specifier in SkinnyMachOFileContainsArchAndUUID() local 84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype); in SkinnyMachOFileContainsArchAndUUID()
|
D | Host.mm | 1115 uint32_t cpusubtype = 0; 1116 len = sizeof(cpusubtype); 1117 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0) 1118 sub = cpusubtype;
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.cpp | 415 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype); in CheckForKernelImageAtAddress() 437 ArchSpec kernel_arch (eArchTypeMachO, header.cputype, header.cpusubtype); in CheckForKernelImageAtAddress()
|
/external/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 422 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype); in checkMachOAndArchFlags() 425 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype); in checkMachOAndArchFlags()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | readmacho.c | 214 arch.cpusubtype = VG_(ntohl)(arch_be.cpusubtype); in map_image_aboard()
|
/external/lldb/docs/ |
D | lldb-gdb-remote.txt | 439 read packet: $cputype:16777223;cpusubtype:3;ostype:darwin;vendor:apple;endian:little;ptrsize:8;#00 444 cpusubtype: is a number that is the mach-o CPU subtype type that is being debugged 471 …bf;real-uid:ecf;real-gid:b;effective-uid:ecf;effective-gid:b;cputype:7;cpusubtype:3;ostype:macosx;… 476 …l-uid:ecf;real-gid:b;effective-uid:ecf;effective-gid:b;cputype:1000007;cpusubtype:3;ostype:macosx;… 487 cpusubtype: the Mach-O CPU subtype of the process
|
/external/llvm/tools/macho-dump/ |
D | macho-dump.cpp | 386 outs() << "('cpusubtype', " << Header.cpusubtype << ")\n"; in printHeader()
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 787 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype); in checkMachOAndArchFlags() 790 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype); in checkMachOAndArchFlags()
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 525 header.cpusubtype); in GetModuleSpecifications() 725 ArchSpec mach_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype); in ParseHeader() 1805 ArchSpec header_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype); in ParseSymtab() 3671 ArchSpec header_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype); in Dump() 4188 arch.SetArchitecture (eArchTypeMachO, m_header.cputype, m_header.cpusubtype); in GetArchitecture()
|
/external/chromium_org/v8/src/ |
D | gdb-jit.cc | 497 uint32_t cpusubtype; member 540 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL in WriteHeader() 544 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL in WriteHeader()
|
/external/llvm/test/tools/llvm-readobj/Inputs/ |
D | relocs.py | 377 cpusubtype = f.uint32()
|