reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
   43   lldbassert(file);
   46   ASSIGN_PTR_OR_RETURN(result->m_dbi, file->getPDBDbiStream());
   47   ASSIGN_PTR_OR_RETURN(result->m_tpi, file->getPDBTpiStream());
   48   ASSIGN_PTR_OR_RETURN(result->m_ipi, file->getPDBIpiStream());
   49   ASSIGN_PTR_OR_RETURN(result->m_info, file->getPDBInfoStream());
   50   ASSIGN_PTR_OR_RETURN(result->m_publics, file->getPDBPublicsStream());
   51   ASSIGN_PTR_OR_RETURN(result->m_globals, file->getPDBGlobalsStream());
   52   ASSIGN_PTR_OR_RETURN(result->m_symrecords, file->getPDBSymbolStream());
   56   result->m_file = std::move(file);