Searched refs:pe_file (Results 1 – 6 of 6) sorted by relevance
/external/google-breakpad/src/tools/windows/converter/ |
D | ms_symbol_server_converter.cc | 397 string *pe_file) { in LocatePEFile() argument 399 missing.version, pe_file); in LocatePEFile() 518 string pe_file; local 519 result = LocatePEFile(missing, &pe_file); 521 fprintf(stderr, "WARNING: Could not download: %s\n", pe_file.c_str()); 525 *out_pe_file = pe_file; 533 AutoDeleter pe_deleter(pe_file); 551 if (!WindowsStringUtils::safe_mbstowcs(pe_file, &pe_file_w)) { 555 pe_file.c_str()); 644 string pe_file; local [all …]
|
D | ms_symbol_server_converter.h | 152 LocateResult LocatePEFile(const MissingSymbolInfo &missing, string *pe_file); 178 string *pe_file); 194 string *pe_file);
|
/external/google-breakpad/src/common/windows/ |
D | pe_util.cc | 125 bool ReadModuleInfo(const wstring & pe_file, PDBModuleInfo * info) { in ReadModuleInfo() argument 129 if (!WindowsStringUtils::safe_wcstombs(pe_file, &img_file)) { in ReadModuleInfo() 131 pe_file.c_str()); in ReadModuleInfo() 199 bool ReadPEInfo(const wstring & pe_file, PEModuleInfo * info) { in ReadPEInfo() argument 203 if (!WindowsStringUtils::safe_wcstombs(pe_file, &img_file)) { in ReadPEInfo() 205 pe_file.c_str()); in ReadPEInfo() 211 fprintf(stderr, "Failed to open PE file: %S\n", pe_file.c_str()); in ReadPEInfo() 215 info->code_file = WindowsStringUtils::GetBaseName(pe_file); in ReadPEInfo() 240 bool PrintPEFrameData(const wstring & pe_file, FILE * out_file) in PrintPEFrameData() argument 245 if (!WindowsStringUtils::safe_wcstombs(pe_file, &img_file)) { in PrintPEFrameData() [all …]
|
D | pe_util.h | 44 bool ReadModuleInfo(const wstring& pe_file, PDBModuleInfo* info); 47 bool ReadPEInfo(const wstring& pe_file, PEModuleInfo* info); 51 bool PrintPEFrameData(const wstring& pe_file, FILE* out_file);
|
D | pe_source_line_writer.cc | 35 PESourceLineWriter::PESourceLineWriter(const wstring& pe_file) : in PESourceLineWriter() argument 36 pe_file_(pe_file) { in PESourceLineWriter()
|
D | pe_source_line_writer.h | 47 explicit PESourceLineWriter(const wstring& pe_file);
|