Searched defs:cpusubtype (Results 1 - 6 of 6) sorted by relevance

/external/lldb/source/Host/macosx/
H A DSymbols.cpp75 const uint32_t cpusubtype = data.GetU32(&data_offset); // machine specifier local
84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype);
/external/lldb/source/Host/common/
H A DHost.cpp305 uint32_t cputype, cpusubtype; local
313 len = sizeof (cpusubtype);
314 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) != 0)
315 cpusubtype = CPU_TYPE_ANY;
327 if (cpusubtype == CPU_SUBTYPE_486)
328 cpusubtype = CPU_SUBTYPE_I386_ALL;
333 g_host_arch_32.SetArchitecture (eArchTypeMachO, ~(CPU_ARCH_MASK) & cputype, cpusubtype);
334 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype);
339 g_host_arch_32.SetArchitecture (eArchTypeMachO, cputype, cpusubtype);
[all...]
/external/lldb/tools/debugserver/source/MacOSX/arm/
H A DDNBArchImpl.cpp682 // cases using a field in a sysctl. For now we are using "hw.cpusubtype"
698 uint32_t cpusubtype; local
699 len = sizeof(cpusubtype);
701 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0)
703 DNBLogThreadedIf(LOG_THREAD, "hw.cpusubtype=%d", cpusubtype);
704 if (cpusubtype == CPU_SUBTYPE_ARM_V7)
741 // cases using a field in a sysctl. For now we are using "hw.cpusubtype"
754 uint32_t cpusubtype; local
[all...]
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3915 uint32_t cpusubtype; local
3916 len = sizeof(cpusubtype);
3917 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0)
3921 cpusubtype == CPU_SUBTYPE_486)
3922 cpusubtype = CPU_SUBTYPE_X86_64_ALL;
3924 strm << "cpusubtype:" << std::dec << cpusubtype << ';'; local
4018 uint32_t cpusubtype; local
4019 size_t cpusubtype_len = sizeof(cpusubtype);
4027 rep << "cpusubtype:" << std::hex << cpusubtype << ';'; local
[all...]
/external/chromium_org/v8/src/
H A Dgdb-jit.cc497 uint32_t cpusubtype; member in struct:v8::BASE_EMBEDDED::MachOHeader
540 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL
544 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL
/external/llvm/include/llvm/Support/
H A DMachO.h533 uint32_t cpusubtype; member in struct:llvm::MachO::mach_header
543 uint32_t cpusubtype; member in struct:llvm::MachO::mach_header_64
921 uint32_t cpusubtype; member in struct:llvm::MachO::fat_arch
1017 // Capability bits used in the definition of cpusubtype.
1025 // Constants for the cpusubtype field.

Completed in 2462 milliseconds