/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | DbiStream.cpp | 52 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 …]
|
D | NativeSession.cpp | 54 : 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()
|
D | DbiModuleDescriptorBuilder.cpp | 80 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()
|
D | TpiStream.cpp | 37 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream() 81 auto HS = Pdb.safelyCreateIndexedStream(Header->HashStreamIndex); in reload()
|
D | GSIStreamBuilder.cpp | 66 CodeViewContainer::Pdb)); in addSymbol()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | DbiStream.h | 43 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;
|
D | NativeSession.h | 97 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile() 98 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile() 107 std::unique_ptr<PDBFile> Pdb; variable
|
D | TpiStream.h | 76 PDBFile &Pdb;
|
/third_party/python/Doc/library/ |
D | pdb.rst | 22 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 …]
|
D | doctest.rst | 1595 (Pdb) list 1600 (Pdb) p x 1602 (Pdb) step 1606 (Pdb) list 1610 (Pdb) p x 1612 (Pdb) step 1616 (Pdb) cont
|
D | bdb.rst | 83 (:class:`pdb.Pdb`) is an example.
|
/third_party/python/Lib/ |
D | pdb.py | 138 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 …]
|
D | doctest.py | 354 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/ |
D | test_pdb.py | 742 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/ |
D | DebugSubsectionRecord.h | 87 Stream, Info, codeview::CodeViewContainer::Pdb))
|
D | CodeView.h | 604 enum class CodeViewContainer { ObjectFile, Pdb }; enumerator
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b2.rst | 313 Fix a bug in :mod:`pdb` where :meth:`~pdb.Pdb.checkline` raises 314 :exc:`AttributeError` if it is called after :meth:`~pdb.Pdb.reset`.
|
D | 3.7.0b1.rst | 17 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
|
D | 3.6.5rc1.rst | 56 Pdb and other debuggers dependent on bdb.py will correctly step over (next
|
D | 3.6.0b1.rst | 621 Pdb now supports the 'readrc' keyword argument to control whether .pdbrc
|
D | 3.9.0a1.rst | 1020 ``pdb.Pdb`` supports ~/.pdbrc in Windows 7. Patch by Tim Hopper and Dan
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 609 On Windows now :class:`~pdb.Pdb` supports ``~/.pdbrc``.
|
D | 3.6.rst | 1303 The :class:`~pdb.Pdb` class constructor has a new optional *readrc* argument
|
D | 3.2.rst | 2116 * The :class:`Pdb` class constructor now accepts a *nosigint* argument.
|
/third_party/python/Misc/ |
D | HISTORY | 13140 - 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
|