/external/google-breakpad/src/common/mac/ |
H A D | arch_utilities.h | 43 cpu_subtype_t cpu_subtype);
|
H A D | macho_id.h | 52 // For the given |cpu_type| and |cpu_subtype|, return a UUID from the LC_UUID 56 cpu_subtype_t cpu_subtype, 59 // For the given |cpu_type| and |cpu_subtype|, return a UUID from the 63 cpu_subtype_t cpu_subtype, 66 // For the given |cpu_type| and |cpu_subtype|, return the Adler32 CRC for the 70 cpu_subtype_t cpu_subtype); 72 // For the given |cpu_type|, and |cpu_subtype| return the MD5 for the mach-o 76 cpu_subtype_t cpu_subtype, 95 bool WalkHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype,
|
H A D | arch_utilities.cc | 97 cpu_subtype_t cpu_subtype) { 99 if (cpu_type == CPU_TYPE_ARM64 && cpu_subtype == CPU_SUBTYPE_ARM64_ALL) { 105 if (cpu_type == CPU_TYPE_ARM && cpu_subtype == CPU_SUBTYPE_ARM_V7S) { 110 return NXGetArchInfoFromCpuType(cpu_type, cpu_subtype); 96 BreakpadGetArchInfoFromCpuType(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) argument
|
H A D | file_id.h | 54 // Accepted values for |cpu_type| and |cpu_subtype| (e.g., CPU_TYPE_X86 or 56 // If |cpu_type| is 0, then the native cpu type is used. If |cpu_subtype| is 58 // Returns false if opening the file failed or if the |cpu_type|/|cpu_subtype| 64 cpu_subtype_t cpu_subtype,
|
H A D | file_id.cc | 74 cpu_subtype_t cpu_subtype, 78 if (macho.UUIDCommand(cpu_type, cpu_subtype, identifier)) 81 return macho.MD5(cpu_type, cpu_subtype, identifier); 73 MachoIdentifier(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char identifier[16]) argument
|
H A D | macho_id.cc | 157 cpu_subtype_t cpu_subtype, 161 if (!WalkHeader(cpu_type, cpu_subtype, UUIDWalkerCB, &uuid_cmd)) 175 cpu_subtype_t cpu_subtype, 179 if (!WalkHeader(cpu_type, cpu_subtype, IDWalkerCB, &dylib_cmd)) 217 uint32_t MachoID::Adler32(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { argument 221 if (!WalkHeader(cpu_type, cpu_subtype, WalkerCB, this)) 227 bool MachoID::MD5(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char identifier[16]) { argument 232 if (!WalkHeader(cpu_type, cpu_subtype, WalkerCB, this)) 240 cpu_subtype_t cpu_subtype, 245 return walker.WalkHeader(cpu_type, cpu_subtype); 156 UUIDCommand(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char bytes[16]) argument 174 IDCommand(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char identifier[16]) argument 239 WalkHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, MachoWalker::LoadCommandCallback callback, void *context) argument [all...] |
H A D | macho_walker.h | 60 // Begin walking the header for |cpu_type| and |cpu_subtype|. If |cpu_type| 63 // CPU_TYPE_POWERPC). If |cpu_subtype| is CPU_SUBTYPE_MULTIPLE, the match is 65 // Returns false if opening the file failed or if the |cpu_type|/|cpu_subtype| 67 bool WalkHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype); 79 cpu_subtype_t cpu_subtype,
|
H A D | macho_walker.cc | 82 bool MachoWalker::WalkHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { argument 84 cpu_subtype_t valid_cpu_subtype = cpu_subtype; 132 cpu_subtype_t cpu_subtype, 162 (cpu_subtype != CPU_SUBTYPE_MULTIPLE && 163 cpu_subtype != header.cpusubtype)) { 191 (cpu_subtype == CPU_SUBTYPE_MULTIPLE || 192 arch.cpusubtype == cpu_subtype)) { 131 FindHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, off_t &offset) argument
|
H A D | dump_syms.h | 81 // |cpu_subtype|, then select that object file for dumping, and return 89 bool SetArchitecture(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype);
|
H A D | macho_reader.h | 249 // The data contained in a Mach-O fat binary (|cpu_type|, |cpu_subtype|) 253 cpu_subtype_t cpu_subtype, 384 cpu_subtype_t cpu_subtype() const { return cpu_subtype_; } function in class:google_breakpad::mach_o::Reader
|
H A D | macho_reader_unittest.cc | 91 cpu_subtype_t cpu_subtype, 714 cpu_subtype_t cpu_subtype = CPU_SUBTYPE_I386_ALL, 721 D32(cpu_subtype); // cpu subtype 885 EXPECT_EQ(kCPUSubType, reader.cpu_subtype()); 908 EXPECT_EQ(kCPUSubType, reader.cpu_subtype()); 931 EXPECT_EQ(kCPUSubType, reader.cpu_subtype()); 954 EXPECT_EQ(kCPUSubType, reader.cpu_subtype()); 998 EXPECT_EQ(CPU_SUBTYPE_I386_ALL, reader.cpu_subtype()); 1024 EXPECT_EQ(CPU_SUBTYPE_I386_ALL, reader.cpu_subtype());
|
H A D | macho_reader.cc | 161 cpu_subtype_t cpu_subtype, 166 filename_.c_str(), cpu_type, cpu_subtype, 160 CPUTypeMismatch(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, cpu_type_t expected_cpu_type, cpu_subtype_t expected_cpu_subtype) argument
|
/external/google-breakpad/src/tools/mac/upload_system_symbols/ |
H A D | arch_constants.h | 52 const char* GetNXArchInfoName(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { argument 53 const NXArchInfo* arch_info = NXGetArchInfoFromCpuType(cpu_type, cpu_subtype);
|
/external/google-breakpad/src/tools/mac/dump_syms/ |
H A D | macho_dump.cc | 171 reader.cpu_subtype());
|
/external/llvm/lib/Support/ |
H A D | Host.cpp | 522 switch(hostInfo.cpu_subtype) {
|