Home
last modified time | relevance | path

Searched refs:cv_record (Results 1 – 10 of 10) sorted by relevance

/external/google-breakpad/src/processor/testdata/
Dminidump2.dump.out199 cv_record.data_size = 40
200 cv_record.rva = 0x132c
205 (cv_record).cv_signature = 0x53445352
206 (cv_record).signature = 5a9832e5-2872-41c1-838e-d98914e9b7ff
207 (cv_record).age = 1
208 (cv_record).pdb_file_name = "c:\test_app.pdb"
231 cv_record.data_size = 34
232 cv_record.rva = 0x1354
237 (cv_record).cv_signature = 0x53445352
238 (cv_record).signature = 36515fb5-d043-45e4-91f6-72fa2e2878c0
[all …]
/external/google-breakpad/src/processor/
Dminidump.cc1901 Swap(&module_.cv_record); in Read()
1940 if (module_.cv_record.data_size && !GetCVRecord(NULL)) { in ReadAuxiliaryData()
2286 if (module_.cv_record.data_size == 0) { in GetCVRecord()
2290 if (!minidump_->SeekSet(module_.cv_record.rva)) { in GetCVRecord()
2295 if (module_.cv_record.data_size > max_cv_bytes_) { in GetCVRecord()
2297 module_.cv_record.data_size << " exceeds maximum " << in GetCVRecord()
2309 scoped_ptr< vector<uint8_t> > cv_record( in GetCVRecord() local
2310 new vector<uint8_t>(module_.cv_record.data_size)); in GetCVRecord()
2312 if (!minidump_->ReadBytes(&(*cv_record)[0], module_.cv_record.data_size)) { in GetCVRecord()
2318 if (module_.cv_record.data_size > sizeof(signature)) { in GetCVRecord()
[all …]
Dsynth_minidump.cc252 const Section *cv_record, in Module() argument
272 if (cv_record) in Module()
273 cv_record->CiteLocationIn(this); in Module()
Dsynth_minidump.h263 const Section *cv_record = NULL,
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DMinidumpParser.cpp52 auto cv_record = in GetModuleUUID() local
57 Status error = consumeObject(cv_record, signature); in GetModuleUUID()
66 Status error = consumeObject(cv_record, pdb70_uuid); in GetModuleUUID()
77 return UUID::fromOptionalData(cv_record); in GetModuleUUID()
/external/google-breakpad/src/google_breakpad/common/
Dminidump_format.h396 MDLocationDescriptor cv_record; member
/external/google-breakpad/src/client/solaris/handler/
Dminidump_generator.cc463 module->cv_record = cv.location(); in WriteCVRecord()
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer.cc661 mod->cv_record = cv.location(); in FillRawModule()
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc1443 module->cv_record = cv.location(); in WriteCVRecord()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc992 full_file.GetData(rawmodule->cv_record.rva, MDCVInfoPDB70_minsize)); in ParseModuleStream()