Searched defs:cputype (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/chrome/service/net/
H A Dservice_url_request_context_getter.cc42 std::string cputype; local
46 cputype.assign("i686 (x86_64)");
48 cputype.assign(unixinfo.machine);
65 cputype.c_str(), // e.g. i686
72 cputype.c_str() // e.g. i686
/external/chromium_org/content/common/
H A Duser_agent.cc73 std::string cputype; local
77 cputype.assign("i686 (x86_64)");
79 cputype.assign(unixinfo.machine);
141 cputype.c_str(), // e.g. i686
152 cputype.c_str() // e.g. i686
/external/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c273 Int cputype; local
275 cputype = CPU_TYPE_X86;
277 cputype = CPU_TYPE_X86_64;
281 arch.cputype = ntohl(arch_be->cputype);
285 if (arch.cputype == cputype) {
H A Dlauncher-darwin.c58 cpu_type_t cputype; member in struct:__anon32393
70 static const char *name_for_cputype(cpu_type_t cputype) argument
74 if (valid_archs[i].cputype == cputype) {
129 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype) argument
135 if (ntohl(fa[i].cputype) == cputype) return 1;
162 return name_for_cputype(mh->cputype);
164 return name_for_cputype(OSSwapInt32(mh->cputype));
177 return name_for_cputype(ntohl(fa->cputype));
[all...]
/external/lldb/source/Host/macosx/
H A DSymbols.cpp74 const uint32_t cputype = data.GetU32(&data_offset); // cpu specifier local
84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype);
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.cpp340 MachVMMemory::GetMemorySizes(task_t task, cpu_type_t cputype, nub_process_t pid, mach_vm_size_t &rprvt, mach_vm_size_t &vprvt) argument
359 if (InSharedRegion(addr, cputype))
516 MachVMMemory::GetMemoryProfile(DNBProfileDataScanType scanType, task_t task, struct task_basic_info ti, cpu_type_t cputype, nub_process_t pid, vm_statistics_data_t &vm_stats, uint64_t &physical_memory, mach_vm_size_t &rprvt, mach_vm_size_t &rsize, mach_vm_size_t &vprvt, mach_vm_size_t &vsize, mach_vm_size_t &dirty_size, mach_vm_size_t &purgeable, mach_vm_size_t &anonymous) argument
528 GetMemorySizes(task, cputype, pid, rprvt, vprvt);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c199 Int cputype = CPU_TYPE_POWERPC; local
201 Int cputype = CPU_TYPE_POWERPC64;
203 Int cputype = CPU_TYPE_X86;
205 Int cputype = CPU_TYPE_X86_64;
213 arch.cputype = VG_(ntohl)(arch_be.cputype);
217 if (arch.cputype == cputype) {
/external/lldb/source/Host/common/
H A DHost.cpp305 uint32_t cputype, cpusubtype; local
307 size_t len = sizeof(cputype);
311 if (::sysctlbyname("hw.cputype", &cputype, &len, NULL, 0) == 0)
330 if (cputype & CPU_ARCH_ABI64)
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);
340 cputype |= CPU_ARCH_ABI64;
341 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtyp
[all...]
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3897 uint32_t cputype, is_64_bit_capable; local
3898 size_t len = sizeof(cputype);
3900 if (::sysctlbyname("hw.cputype", &cputype, &len, NULL, 0) == 0)
3905 if (is_64_bit_capable && ((cputype & CPU_ARCH_ABI64) == 0))
3908 cputype |= CPU_ARCH_ABI64;
3912 strm << "cputype:" << std::dec << cputype << ';'; local
3920 cputype == CPU_TYPE_X86_64 &&
3930 if (cputype
4006 cpu_type_t cputype = DNBProcessGetCPUType (pid); local
4015 rep << "cputype:" << std::hex << cputype << ";"; local
[all...]
/external/chromium_org/v8/src/
H A Dgdb-jit.cc496 uint32_t cputype; member in struct:v8::BASE_EMBEDDED::MachOHeader
539 header->cputype = 7; // i386
543 header->cputype = 7 | 0x01000000; // i386 | 64-bit ABI
/external/llvm/include/llvm/Support/
H A DMachO.h532 uint32_t cputype; member in struct:llvm::MachO::mach_header
542 uint32_t cputype; member in struct:llvm::MachO::mach_header_64
920 uint32_t cputype; member in struct:llvm::MachO::fat_arch
1001 // Constants for the cputype field.

Completed in 6387 milliseconds