Lines Matching refs:NativeSession

57 NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile,  in NativeSession()  function in NativeSession
62 NativeSession::~NativeSession() = default;
64 Error NativeSession::createFromPdb(std::unique_ptr<MemoryBuffer> Buffer, in createFromPdb()
78 std::make_unique<NativeSession>(std::move(File), std::move(Allocator)); in createFromPdb()
111 Error NativeSession::createFromPdbPath(StringRef PdbPath, in createFromPdbPath()
118 Session = std::make_unique<NativeSession>(std::move(PdbFile.get()), in createFromPdbPath()
142 Error NativeSession::createFromExe(StringRef ExePath, in createFromExe()
158 Session = std::make_unique<NativeSession>(std::move(File.get()), in createFromExe()
165 NativeSession::searchForPdb(const PdbSearchOptions &Opts) { in searchForPdb()
196 uint64_t NativeSession::getLoadAddress() const { return LoadAddress; } in getLoadAddress()
198 bool NativeSession::setLoadAddress(uint64_t Address) { in setLoadAddress()
203 std::unique_ptr<PDBSymbolExe> NativeSession::getGlobalScope() { in getGlobalScope()
208 NativeSession::getSymbolById(SymIndexId SymbolId) const { in getSymbolById()
212 bool NativeSession::addressForVA(uint64_t VA, uint32_t &Section, in addressForVA()
218 bool NativeSession::addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA()
241 NativeSession::findSymbolByAddress(uint64_t Address, PDB_SymType Type) { in findSymbolByAddress()
248 std::unique_ptr<PDBSymbol> NativeSession::findSymbolByRVA(uint32_t RVA, in findSymbolByRVA()
257 NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset()
266 NativeSession::findLineNumbers(const PDBSymbolCompiland &Compiland, in findLineNumbers()
272 NativeSession::findLineNumbersByAddress(uint64_t Address, in findLineNumbersByAddress()
278 NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA()
283 NativeSession::findLineNumbersBySectOffset(uint32_t Section, uint32_t Offset, in findLineNumbersBySectOffset()
290 NativeSession::findSourceFiles(const PDBSymbolCompiland *Compiland, in findSourceFiles()
297 NativeSession::findOneSourceFile(const PDBSymbolCompiland *Compiland, in findOneSourceFile()
304 NativeSession::findCompilandsForSourceFile(StringRef Pattern, in findCompilandsForSourceFile()
310 NativeSession::findOneCompilandForSourceFile(StringRef Pattern, in findOneCompilandForSourceFile()
315 std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getAllSourceFiles() const { in getAllSourceFiles()
319 std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getSourceFilesForCompiland( in getSourceFilesForCompiland()
325 NativeSession::getSourceFileById(uint32_t FileId) const { in getSourceFileById()
329 std::unique_ptr<IPDBEnumDataStreams> NativeSession::getDebugStreams() const { in getDebugStreams()
333 std::unique_ptr<IPDBEnumTables> NativeSession::getEnumTables() const { in getEnumTables()
338 NativeSession::getInjectedSources() const { in getInjectedSources()
353 NativeSession::getSectionContribs() const { in getSectionContribs()
358 NativeSession::getFrameData() const { in getFrameData()
362 void NativeSession::initializeExeSymbol() { in initializeExeSymbol()
367 NativeExeSymbol &NativeSession::getNativeGlobalScope() const { in getNativeGlobalScope()
368 const_cast<NativeSession &>(*this).initializeExeSymbol(); in getNativeGlobalScope()
373 uint32_t NativeSession::getRVAFromSectOffset(uint32_t Section, in getRVAFromSectOffset()
389 uint64_t NativeSession::getVAFromSectOffset(uint32_t Section, in getVAFromSectOffset()
394 bool NativeSession::moduleIndexForVA(uint64_t VA, uint16_t &ModuleIndex) const { in moduleIndexForVA()
403 bool NativeSession::moduleIndexForSectOffset(uint32_t Sect, uint32_t Offset, in moduleIndexForSectOffset()
413 void NativeSession::parseSectionContribs() { in parseSectionContribs()
419 NativeSession &Session; in parseSectionContribs()
423 Visitor(NativeSession &Session, IMap &AddrMap) in parseSectionContribs()
445 NativeSession::getModuleDebugStream(uint32_t Index) const { in getModuleDebugStream()