/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | MappedBlockStream.cpp | 39 const IPDBFile &Pdb) in MappedBlockStream() argument 40 : Pdb(Pdb), Data(std::move(Data)) {} in MappedBlockStream() 127 uint32_t First = Offset / Pdb.getBlockSize(); in readLongestContiguousChunk() 131 while (Last < Pdb.getBlockCount() - 1) { in readLongestContiguousChunk() 137 uint32_t OffsetInFirstBlock = Offset % Pdb.getBlockSize(); in readLongestContiguousChunk() 138 uint32_t BytesFromFirstBlock = Pdb.getBlockSize() - OffsetInFirstBlock; in readLongestContiguousChunk() 141 BytesFromFirstBlock + (BlockSpan - 1) * Pdb.getBlockSize(); in readLongestContiguousChunk() 142 auto Result = Pdb.getBlockData(BlockList[First], Pdb.getBlockSize()); in readLongestContiguousChunk() 161 uint32_t BlockNum = Offset / Pdb.getBlockSize(); in tryReadContiguously() 162 uint32_t OffsetInBlock = Offset % Pdb.getBlockSize(); in tryReadContiguously() [all …]
|
D | DbiStream.cpp | 83 : Pdb(File), Stream(std::move(Stream)), Header(nullptr) { in DbiStream() 110 auto IS = Pdb.getPDBInfoStream(); in reload() 286 if (StreamNum >= Pdb.getNumStreams()) in initializeSectionHeadersData() 289 auto SHS = MappedBlockStream::createIndexedStream(StreamNum, Pdb); in initializeSectionHeadersData() 316 if (StreamNum >= Pdb.getNumStreams()) in initializeFpoRecords() 319 auto FS = MappedBlockStream::createIndexedStream(StreamNum, Pdb); in initializeFpoRecords()
|
D | TpiStream.cpp | 63 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream() 188 if (Header->HashStreamIndex >= Pdb.getNumStreams()) in reload() 193 MappedBlockStream::createIndexedStream(Header->HashStreamIndex, Pdb); in reload()
|
D | PublicsStream.cpp | 76 : Pdb(File), Stream(std::move(Stream)) {} in PublicsStream() 163 auto SymbolS = Pdb.getPDBSymbolStream(); in getSymbols()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
D | DbiStream.cpp | 53 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument 126 if (auto EC = initializeSectionHeadersData(Pdb)) in reload() 130 if (auto EC = initializeFpoRecords(Pdb)) in reload() 249 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument 250 if (!Pdb) in initializeSectionHeadersData() 260 if (StreamNum >= Pdb->getNumStreams()) in initializeSectionHeadersData() 264 Pdb->getMsfLayout(), Pdb->getMsfBuffer(), StreamNum, Pdb->getAllocator()); in initializeSectionHeadersData() 282 Error DbiStream::initializeFpoRecords(PDBFile *Pdb) { in initializeFpoRecords() argument 283 if (!Pdb) in initializeFpoRecords() 295 if (StreamNum >= Pdb->getNumStreams()) in initializeFpoRecords() [all …]
|
D | TpiStream.cpp | 35 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream() 79 if (Header->HashStreamIndex >= Pdb.getNumStreams()) in reload() 84 Pdb.getMsfLayout(), Pdb.getMsfBuffer(), Header->HashStreamIndex, in reload() 85 Pdb.getAllocator()); in reload()
|
D | DbiModuleDescriptorBuilder.cpp | 72 assert(Symbol.length() % alignOf(CodeViewContainer::Pdb) == 0 && in addSymbol() 156 assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && in commit() 177 std::move(Subsection), CodeViewContainer::Pdb)); in addDebugSubsection() 183 SubsectionContents, CodeViewContainer::Pdb)); in addDebugSubsection()
|
D | NativeSession.cpp | 67 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)) {} in NativeSession() 113 auto Tpi = Pdb->getPDBTpiStream(); in createTypeEnumerator() 151 auto Tpi = Pdb->getPDBTpiStream(); in findSymbolByTypeIndex()
|
/external/llvm/include/llvm/DebugInfo/PDB/Raw/ |
D | RawSession.h | 66 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile() 67 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile() 70 std::unique_ptr<PDBFile> Pdb;
|
D | TpiStream.h | 57 const PDBFile &Pdb; variable
|
D | PublicsStream.h | 57 PDBFile &Pdb;
|
D | MappedBlockStream.h | 57 const IPDBFile &Pdb; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | DbiStream.h | 43 Error reload(PDBFile *Pdb); 92 Error initializeSectionHeadersData(PDBFile *Pdb); 94 Error initializeFpoRecords(PDBFile *Pdb);
|
D | NativeSession.h | 107 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile() 108 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile() 111 std::unique_ptr<PDBFile> Pdb;
|
D | TpiStream.h | 66 PDBFile &Pdb;
|
/external/python/cpython3/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) 98 (Pdb) 157 :class:`Pdb` class and calling the method of the same name. If you want to 160 .. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None, \ 163 :class:`Pdb` is the debugger class. [all …]
|
/external/python/cpython2/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) 82 (Pdb) 136 :class:`Pdb` class and calling the method of the same name. If you want to 139 .. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None) 141 :class:`Pdb` is the debugger class. [all …]
|
/external/python/cpython3/Lib/ |
D | pdb.py | 136 class Pdb(bdb.Bdb, cmd.Cmd): class 343 if Pdb._previous_sigint_handler: 344 signal.signal(signal.SIGINT, Pdb._previous_sigint_handler) 345 Pdb._previous_sigint_handler = None 1046 Pdb._previous_sigint_handler = \ 1096 p = Pdb(self.completekey, self.stdin, self.stdout) 1585 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n' 1586 __doc__ += Pdb.help_exec.__doc__ 1594 Pdb().run(statement, globals, locals) 1597 return Pdb().runeval(expression, globals, locals) [all …]
|
D | doctest.py | 346 class _OutputRedirectingPdb(pdb.Pdb): 356 pdb.Pdb.__init__(self, stdout=out, nosigint=True) 364 pdb.Pdb.set_trace(self, frame) 370 pdb.Pdb.set_continue(self) 378 return pdb.Pdb.trace_dispatch(self, *args) 2625 p = pdb.Pdb(nosigint=True) 2629 pdb.Pdb(nosigint=True).run("exec(%r)" % src, globs, globs)
|
/external/llvm/test/DebugInfo/PDB/ |
D | pdbdump-headers.test | 253 ; EMPTY-NEXT: Pdb File Name Idx: 0 387 ; EMPTY-NEXT: Pdb File Name Idx: 1 1155 ; ALL: Pdb File Name Idx: 0 1230 ; ALL: Pdb File Name Idx: 1 1799 ; BIG-NEXT: Pdb File Name Idx: 0 1815 ; BIG-NEXT: Pdb File Name Idx: 0 1844 ; BIG-NEXT: Pdb File Name Idx: 0 1878 ; BIG-NEXT: Pdb File Name Idx: 0 1894 ; BIG-NEXT: Pdb File Name Idx: 0 1923 ; BIG-NEXT: Pdb File Name Idx: 0 [all …]
|
/external/python/cpython2/Lib/ |
D | pdb.py | 59 class Pdb(bdb.Bdb, cmd.Cmd): class 716 p = Pdb(self.completekey, self.stdin, self.stdout) 1238 Pdb().run(statement, globals, locals) 1241 return Pdb().runeval(expression, globals, locals) 1248 return Pdb().runcall(*args, **kwds) 1251 Pdb().set_trace(sys._getframe().f_back) 1265 p = Pdb() 1311 pdb = Pdb()
|
D | pdb.doc | 1 The Python Debugger Pdb 9 The debugger's prompt is '(Pdb) '. This will stop in the first 167 (Pdb) global list_options; list_options = ['-l'] 168 (Pdb)
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/ |
D | 3_inspecting.ipynb | 306 "(Pdb) step\n", 310 "(Pdb) fast_decode.previous_encoding = encoder_output\n", 311 "(Pdb) continue\n", 408 "(Pdb) step\n", 412 …"(Pdb) encoder_output = tf.concat([fast_decode.previous_encoding[:, :3], encoder_output[:, 3:]], a… 413 "(Pdb) continue\n",
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | DebugSubsectionRecord.h | 88 Stream, Info, codeview::CodeViewContainer::Pdb))
|
/external/python/cpython3/Lib/test/ |
D | test_pdb.py | 565 getattr(pdb.Pdb(nosigint=True, readrc=False), method)(arg) 1341 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))
|