Home
last modified time | relevance | path

Searched refs:pdb_file (Results 1 – 4 of 4) sorted by relevance

/external/google-breakpad/src/tools/windows/converter/
Dms_symbol_server_converter.cc501 string pdb_file; local
502 LocateResult result = LocateSymbolFile(missing, &pdb_file);
511 *symbol_file = pdb_file;
532 AutoDeleter pdb_deleter(pdb_file);
537 string pdb_extension = pdb_file.substr(pdb_file.length() - 4);
545 pdb_file.c_str());
559 if (!WindowsStringUtils::safe_mbstowcs(pdb_file, &pdb_file_w)) {
581 *converted_symbol_file = pdb_file.substr(0, pdb_file.length() - 4) + ".sym";
618 pdb_file.c_str());
/external/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
DObjectFilePDB.cpp118 std::unique_ptr<PDBFile> pdb_file = loadPDBFile(file.GetPath(), allocator); in GetModuleSpecifications() local
119 if (!pdb_file) in GetModuleSpecifications()
122 auto info_stream = pdb_file->getPDBInfoStream(); in GetModuleSpecifications()
127 auto dbi_stream = pdb_file->getPDBDbiStream(); in GetModuleSpecifications()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DSymbolFileNativePDB.cpp108 llvm::StringRef pdb_file; in loadMatchingPDBFile() local
109 if (llvm::Error e = obj->getDebugPDBInfo(pdb_info, pdb_file)) { in loadMatchingPDBFile()
117 if (!FileSystem::Instance().Exists(pdb_file)) { in loadMatchingPDBFile()
119 const auto pdb_name = FileSpec(pdb_file).GetFilename().GetCString(); in loadMatchingPDBFile()
120 pdb_file = exe_dir.CopyByAppendingPathComponent(pdb_name).GetCString(); in loadMatchingPDBFile()
124 auto pdb = ObjectFilePDB::loadPDBFile(std::string(pdb_file), allocator); in loadMatchingPDBFile()
268 PDBFile *pdb_file; in CalculateAbilities() local
270 pdb_file = &pdb->GetPDBFile(); in CalculateAbilities()
274 pdb_file = m_file_up.get(); in CalculateAbilities()
277 if (!pdb_file) in CalculateAbilities()
[all …]
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp48 llvm::StringRef pdb_file; in LLDB_PLUGIN_DEFINE() local
50 if (!coff_obj.getDebugPDBInfo(pdb_info, pdb_file) && pdb_info) { in LLDB_PLUGIN_DEFINE()