Home
last modified time | relevance | path

Searched refs:Pdb (Results 1 – 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp52 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
125 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
129 if (auto EC = initializeOldFpoRecords(Pdb)) in reload()
131 if (auto EC = initializeNewFpoRecords(Pdb)) in reload()
258 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
260 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
284 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() argument
286 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
308 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() argument
310 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
[all …]
DNativeSession.cpp54 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)), in NativeSession()
55 Cache(*this, getDbiStreamPtr(*Pdb)) {} in NativeSession()
195 auto ISS = Pdb->getInjectedSourceStream(); in getInjectedSources()
200 auto Strings = Pdb->getStringTable(); in getInjectedSources()
205 return std::make_unique<NativeEnumInjectedSources>(*Pdb, *ISS, *Strings); in getInjectedSources()
DDbiModuleDescriptorBuilder.cpp80 assert(BulkSymbols.size() % alignOf(CodeViewContainer::Pdb) == 0 && in addSymbolsInBulk()
162 assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && in commit()
184 std::move(Subsection), CodeViewContainer::Pdb)); in addDebugSubsection()
190 SubsectionContents, CodeViewContainer::Pdb)); in addDebugSubsection()
DTpiStream.cpp37 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream()
81 auto HS = Pdb.safelyCreateIndexedStream(Header->HashStreamIndex); in reload()
DGSIStreamBuilder.cpp66 CodeViewContainer::Pdb)); in addSymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h43 Error reload(PDBFile *Pdb);
95 Error initializeSectionHeadersData(PDBFile *Pdb);
97 Error initializeOldFpoRecords(PDBFile *Pdb);
98 Error initializeNewFpoRecords(PDBFile *Pdb);
101 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
DNativeSession.h97 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
98 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
107 std::unique_ptr<PDBFile> Pdb; variable
DTpiStream.h76 PDBFile &Pdb;
/third_party/python/Doc/library/
Dpdb.rst22 single: Pdb (class in pdb)
26 The debugger is extensible -- it is actually defined as the class :class:`Pdb`.
30 The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
37 (Pdb) continue
39 (Pdb) continue
42 (Pdb)
97 (Pdb)
156 :class:`Pdb` class and calling the method of the same name. If you want to
159 .. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None, \
162 :class:`Pdb` is the debugger class.
[all …]
Ddoctest.rst1595 (Pdb) list
1600 (Pdb) p x
1602 (Pdb) step
1606 (Pdb) list
1610 (Pdb) p x
1612 (Pdb) step
1616 (Pdb) cont
Dbdb.rst83 (:class:`pdb.Pdb`) is an example.
/third_party/python/Lib/
Dpdb.py138 class Pdb(bdb.Bdb, cmd.Cmd): class
344 if Pdb._previous_sigint_handler:
346 signal.signal(signal.SIGINT, Pdb._previous_sigint_handler)
350 Pdb._previous_sigint_handler = None
1054 Pdb._previous_sigint_handler = \
1104 p = Pdb(self.completekey, self.stdin, self.stdout)
1598 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1599 __doc__ += Pdb.help_exec.__doc__
1607 Pdb().run(statement, globals, locals)
1610 return Pdb().runeval(expression, globals, locals)
[all …]
Ddoctest.py354 class _OutputRedirectingPdb(pdb.Pdb):
364 pdb.Pdb.__init__(self, stdout=out, nosigint=True)
372 pdb.Pdb.set_trace(self, frame)
378 pdb.Pdb.set_continue(self)
386 return pdb.Pdb.trace_dispatch(self, *args)
2642 p = pdb.Pdb(nosigint=True)
2646 pdb.Pdb(nosigint=True).run("exec(%r)" % src, globs, globs)
/third_party/python/Lib/test/
Dtest_pdb.py742 getattr(pdb.Pdb(nosigint=True, readrc=False), method)(arg)
1625 self.assertEqual(pdb.Pdb().rcLines[0], "invalid")
1635 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))
1907 db = pdb.Pdb()
1913 db = pdb.Pdb()
1929 db = pdb.Pdb()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSubsectionRecord.h87 Stream, Info, codeview::CodeViewContainer::Pdb))
DCodeView.h604 enum class CodeViewContainer { ObjectFile, Pdb }; enumerator
/third_party/python/Misc/NEWS.d/
D3.10.0b2.rst313 Fix a bug in :mod:`pdb` where :meth:`~pdb.Pdb.checkline` raises
314 :exc:`AttributeError` if it is called after :meth:`~pdb.Pdb.reset`.
D3.7.0b1.rst17 Pdb and other debuggers dependent on bdb.py will correctly step over (next
693 Add references to some commands in the documentation of Pdb. Patch by
D3.6.5rc1.rst56 Pdb and other debuggers dependent on bdb.py will correctly step over (next
D3.6.0b1.rst621 Pdb now supports the 'readrc' keyword argument to control whether .pdbrc
D3.9.0a1.rst1020 ``pdb.Pdb`` supports ~/.pdbrc in Windows 7. Patch by Tim Hopper and Dan
/third_party/python/Doc/whatsnew/
D3.9.rst609 On Windows now :class:`~pdb.Pdb` supports ``~/.pdbrc``.
D3.6.rst1303 The :class:`~pdb.Pdb` class constructor has a new optional *readrc* argument
D3.2.rst2116 * The :class:`Pdb` class constructor now accepts a *nosigint* argument.
/third_party/python/Misc/
DHISTORY13140 - Issue #1503502: Make pdb.Pdb easier to subclass by putting message and error
18179 - Patch #721464: pdb.Pdb instances can now be given explicit stdin and
19994 of the pdb.Pdb class gives have been corrected. d(own) goes to a newer