HomeSort by relevance Sort by last modified time
    Searched refs:object_files_ (Results 1 - 3 of 3) sorted by null

  /external/google-breakpad/src/common/mac/
dump_syms.h 109 *count = object_files_.size();
110 if (object_files_.size() > 0)
111 return &object_files_[0];
174 vector<struct fat_arch> object_files_; member in class:google_breakpad::DumpSymbols
176 // The object file in object_files_ selected to dump, or NULL if
macho_reader.h 133 *count = object_files_.size();
134 if (object_files_.size() > 0)
135 return &object_files_[0];
151 // object_files_.size() == fat_header.nfat_arch
152 vector<struct fat_arch> object_files_; member in class:google_breakpad::mach_o::FatReader
macho_reader.cc 102 object_files_.resize(object_files_count);
104 struct fat_arch *objfile = &object_files_[i];
132 object_files_.resize(1);
135 if (!(cursor >> object_files_[0].cputype
136 >> object_files_[0].cpusubtype)) {
141 object_files_[0].offset = 0;
142 object_files_[0].size = static_cast<uint32_t>(buffer_.Size());
146 object_files_[0].align = 12; // 2^12 == 4096

Completed in 539 milliseconds