Lines Matching refs:py
15 * :py:class:`SBTarget`: Represents the target program running under the debugger.
16 * :py:class:`SBProcess`: Represents the process associated with the target program.
17 * :py:class:`SBThread`: Represents a thread of execution. :py:class:`SBProcess` contains SBThreads.
18 * :py:class:`SBFrame`: Represents one of the stack frames associated with a thread. :py:class:`SBThread`
20 * :py:class:`SBSymbolContext`: A container that stores various debugger related info.
21 * :py:class:`SBValue`: Represents the value of a variable, a register, or an expression.
22 * :py:class:`SBModule`: Represents an executable image and its associated object and symbol
23 files. :py:class:`SBTarget` contains SBModule.
24 * :py:class:`SBBreakpoint`: Represents a logical breakpoint and its associated settings.
25 :py:class:`SBTarget` contains SBBreakpoints.
26 * :py:class:`SBSymbol`: Represents the symbol possibly associated with a stack frame.
27 * :py:class:`SBCompileUnit`: Represents a compilation unit, or compiled source file.
28 * :py:class:`SBFunction`: Represents a generic function, which can be inlined or not.
29 * :py:class:`SBBlock`: Represents a lexical block. :py:class:`SBFunction` contains SBBlocks.
30 * :py:class:`SBLineEntry`: Specifies an association with a contiguous range of instructions
31 and a source file location. :py:class:`SBCompileUnit` contains SBLineEntry.
40 a way that is incompatible with our usage of the python module as __init__.py