Home | History | Annotate | Download | only in interface

Lines Matching full:lldb

10 namespace lldb {
53 SBFrame (const lldb::SBFrame &rhs);
58 IsEqual (const lldb::SBFrame &rhs) const;
66 lldb::addr_t
70 SetPC (lldb::addr_t new_pc);
72 lldb::addr_t
75 lldb::addr_t
78 lldb::SBAddress
81 lldb::SBSymbolContext
84 lldb::SBModule
87 lldb::SBCompileUnit
90 lldb::SBFunction
93 lldb::SBSymbol
101 lldb::SBBlock
106 /// LLDB are represented by Blocks that have inlined function information, so
134 lldb::SBValue
137 lldb::SBValue
138 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic);
140 lldb::SBValue
141 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error);
143 lldb::SBValue
160 lldb::SBBlock
163 lldb::SBLineEntry
166 lldb::SBThread
177 operator == (const lldb::SBFrame &rhs) const;
180 operator != (const lldb::SBFrame &rhs) const;
188 lldb::SBValueList
194 lldb::SBValueList
199 lldb::DynamicValueType use_dynamic);
201 lldb::SBValueList
208 lldb::SBValue
211 lldb::SBValue
212 FindVariable (const char *var_name, lldb::DynamicValueType use_dynamic);
214 lldb::SBValue
218 /// Get a lldb.SBValue for a variable path.
233 /// Unlike EvaluateExpression() which returns lldb.SBValue objects
239 lldb::SBValue
242 lldb::SBValue
243 GetValueForVariablePath (const char *var_path, lldb::DynamicValueType use_dynamic);
252 lldb::SBValue
255 lldb::SBValue
256 FindValue (const char *name, ValueType value_type, lldb::DynamicValueType use_dynamic);
259 GetDescription (lldb::SBStream &description);
275 '''Calls through to lldb.SBFrame.GetValueForVariablePath() and returns
284 if _newclass: addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
293 if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
296 if _newclass: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) for this stack frame.''')
299 if _newclass: function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) for this stack frame.''')
302 if _newclass: symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) for this stack frame.''')
305 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) for this stack frame.''')
311 if _newclass: name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the function that this frame represents. Inlined stack frame might have a concrete function that differs from the name of the inlined function (a named lldb.SBBlock).''')
314 if _newclass: line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line table entry (lldb.SBLineEntry) for this stack frame.''')
317 if _newclass: thread = property(GetThread, None, doc='''A read only property that returns an lldb object that represents the thread (lldb.SBThread) for this stack frame.''')
326 if _newclass: variables = property(get_all_variables, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the variables in this stack frame.''')
329 if _newclass: vars = property(get_all_variables, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the variables in this stack frame.''')
332 if _newclass: locals = property(get_locals, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the local variables in this stack frame.''')
335 if _newclass: args = property(get_arguments, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the argument variables in this stack frame.''')
338 if _newclass: arguments = property(get_arguments, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the argument variables in this stack frame.''')
341 if _newclass: statics = property(get_statics, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the static variables in this stack frame.''')
344 if _newclass: registers = property(GetRegisters, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the CPU registers for this stack frame.''')
347 if _newclass: regs = property(GetRegisters, None, doc='''A read only property that returns a list() that contains a collection of lldb.SBValue objects that represent the CPU registers for this stack frame.''')
352 } // namespace lldb