Home | History | Annotate | Download | only in interface

Lines Matching full:lldb

10 namespace lldb {
34 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
38 context = frame0.GetSymbolContext(lldb.eSymbolContextEverything)
54 SBSymbolContext (const lldb::SBSymbolContext& rhs);
61 lldb::SBModule GetModule ();
62 lldb::SBCompileUnit GetCompileUnit ();
63 lldb::SBFunction GetFunction ();
64 lldb::SBBlock GetBlock ();
65 lldb::SBLineEntry GetLineEntry ();
66 lldb::SBSymbol GetSymbol ();
68 void SetModule (lldb::SBModule module);
69 void SetCompileUnit (lldb::SBCompileUnit compile_unit);
70 void SetFunction (lldb::SBFunction function);
71 void SetBlock (lldb::SBBlock block);
72 void SetLineEntry (lldb::SBLineEntry line_entry);
73 void SetSymbol (lldb::SBSymbol symbol);
75 lldb::SBSymbolContext
76 GetParentOfInlinedScope (const lldb::SBAddress &curr_frame_pc,
77 lldb::SBAddress &parent_frame_addr) const;
81 GetDescription (lldb::SBStream &description);
87 if _newclass: module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
91 if _newclass: compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.SBCompileUnit) in this symbol context.''')
95 if _newclass: function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
99 if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
103 if _newclass: symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setting of the symbol (lldb.SBSymbol) in this symbol context.''')
107 if _newclass: line_entry = property(GetLineEntry, SetLineEntry, doc='''A read/write property that allows the getting/setting of the line entry (lldb.SBLineEntry) in this symbol context.''')
112 } // namespace lldb