Home
last modified time | relevance | path

Searched refs:SBValue (Results 1 – 25 of 45) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp220 SBValue::SBValue() { LLDB_INSTRUMENT_VA(this); } in SBValue() function in SBValue
222 SBValue::SBValue(const lldb::ValueObjectSP &value_sp) { in SBValue() function in SBValue
228 SBValue::SBValue(const SBValue &rhs) { in SBValue() function in SBValue
234 SBValue &SBValue::operator=(const SBValue &rhs) { in operator =()
243 SBValue::~SBValue() = default;
245 bool SBValue::IsValid() { in IsValid()
249 SBValue::operator bool() const { in operator bool()
259 void SBValue::Clear() { in Clear()
265 SBError SBValue::GetError() { in GetError()
281 user_id_t SBValue::GetID() { in GetID()
[all …]
H A DSBValueList.cpp37 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append()
44 lldb::SBValue GetValueAtIndex(uint32_t index) { in GetValueAtIndex()
46 return lldb::SBValue(); in GetValueAtIndex()
50 lldb::SBValue FindValueByUID(lldb::user_id_t uid) { in FindValueByUID()
55 return lldb::SBValue(); in FindValueByUID()
58 lldb::SBValue GetFirstValueByName(const char *name) const { in GetFirstValueByName()
65 return lldb::SBValue(); in GetFirstValueByName()
73 std::vector<lldb::SBValue> m_values;
131 void SBValueList::Append(const SBValue &val_obj) { in Append()
141 m_opaque_up->Append(SBValue(val_obj_sp)); in Append()
[all …]
H A DSBFrame.cpp443 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path) { in GetValueForVariablePath()
446 SBValue sb_value; in GetValueForVariablePath()
460 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path, in GetValueForVariablePath()
464 SBValue sb_value; in GetValueForVariablePath()
494 SBValue SBFrame::FindVariable(const char *name) { in FindVariable()
497 SBValue value; in FindVariable()
511 SBValue SBFrame::FindVariable(const char *name, in FindVariable()
516 SBValue sb_value; in FindVariable()
545 SBValue SBFrame::FindValue(const char *name, ValueType value_type) { in FindValue()
548 SBValue value; in FindValue()
[all …]
H A DSBThread.cpp352 SBValue SBThread::GetStopReturnValue() { in GetStopReturnValue()
369 return SBValue(return_valobj_sp); in GetStopReturnValue()
957 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame()
1305 SBValue SBThread::GetCurrentException() { in GetCurrentException()
1310 return SBValue(); in GetCurrentException()
1312 return SBValue(thread_sp->GetCurrentException()); in GetCurrentException()
1342 SBValue SBThread::GetSiginfo() { in GetSiginfo()
1347 return SBValue(); in GetSiginfo()
H A DSBTarget.cpp1406 SBValue SBTarget::CreateValueFromAddress(const char *name, SBAddress addr, in CreateValueFromAddress()
1410 SBValue sb_value; in CreateValueFromAddress()
1424 lldb::SBValue SBTarget::CreateValueFromData(const char *name, lldb::SBData data, in CreateValueFromData()
1428 SBValue sb_value; in CreateValueFromData()
1442 lldb::SBValue SBTarget::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
1446 SBValue sb_value; in CreateValueFromExpression()
1914 sb_value_list.Append(SBValue(valobj_sp)); in FindGlobalVariables()
1963 sb_value_list.Append(SBValue(valobj_sp)); in FindGlobalVariables()
1971 lldb::SBValue SBTarget::FindFirstGlobalVariable(const char *name) { in FindFirstGlobalVariable()
1977 return SBValue(); in FindFirstGlobalVariable()
[all …]
H A DSBType.cpp402 SBValue SBTypeStaticField::GetConstantValue(lldb::SBTarget target) { in GetConstantValue()
406 return SBValue(); in GetConstantValue()
410 return SBValue(); in GetConstantValue()
416 return SBValue(std::move(value_obj_sp)); in GetConstantValue()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValue.h27 class LLDB_API SBValue {
29 SBValue();
31 SBValue(const lldb::SBValue &rhs);
33 lldb::SBValue &operator=(const lldb::SBValue &rhs);
35 ~SBValue();
86 lldb::SBValue GetDynamicValue(lldb::DynamicValueType use_dynamic);
88 lldb::SBValue GetStaticValue();
90 lldb::SBValue GetNonSyntheticValue();
92 lldb::SBValue GetSyntheticValue();
126 lldb::SBValue GetChildAtIndex(uint32_t idx);
[all …]
H A DSBFrame.h109 lldb::SBValue EvaluateExpression(const char *expr);
111 lldb::SBValue EvaluateExpression(const char *expr,
114 lldb::SBValue EvaluateExpression(const char *expr,
118 lldb::SBValue EvaluateExpression(const char *expr,
160 lldb::SBValue FindRegister(const char *name);
164 lldb::SBValue FindVariable(const char *var_name);
166 lldb::SBValue FindVariable(const char *var_name,
174 lldb::SBValue GetValueForVariablePath(const char *var_expr_cstr,
179 lldb::SBValue GetValueForVariablePath(const char *var_path);
189 lldb::SBValue FindValu
201 friend class SBValue; global() variable
[all...]
H A DSBValueList.h32 void Append(const lldb::SBValue &val_obj);
38 lldb::SBValue GetValueAtIndex(uint32_t idx) const;
40 lldb::SBValue GetFirstValueByName(const char *name) const;
42 lldb::SBValue FindValueObjectByUID(lldb::user_id_t uid);
H A DSBTypeSummary.h44 friend class SBValue;
70 typedef bool (*FormatCallback)(SBValue, SBTypeSummaryOptions, SBStream &);
121 bool DoesPrintValue(lldb::SBValue value);
132 friend class SBValue; variable
H A DSBThread.h86 SBValue GetStopReturnValue();
142 SBError ReturnFromFrame(SBFrame &frame, SBValue &return_value);
224 SBValue GetCurrentException();
230 SBValue GetSiginfo();
240 friend class SBValue;
225 friend class SBValue; global() variable
H A DSBTarget.h488 lldb::SBValue FindFirstGlobalVariable(const char *name);
865 lldb::SBValue CreateValueFromAddress(const char *name, lldb::SBAddress addr,
868 lldb::SBValue CreateValueFromData(const char *name, lldb::SBData data,
871 lldb::SBValue CreateValueFromExpression(const char *name, const char *expr);
916 lldb::SBValue EvaluateExpression(const char *expr);
918 lldb::SBValue EvaluateExpression(const char *expr,
963 friend class SBValue; variable
H A DSBType.h129 lldb::SBValue GetConstantValue(lldb::SBTarget target);
280 friend class SBValue; variable
H A DSBDeclaration.h54 friend class SBValue;
H A DSBTypeFilter.h59 friend class SBValue; variable
H A DSBTypeSynthetic.h65 friend class SBValue; variable
H A DSBTypeFormat.h61 friend class SBValue; variable
H A DSBExpressionOptions.h116 friend class SBValue; variable
H A DSBWatchpoint.h102 friend class SBValue; variable
H A DSBError.h93 friend class SBValue; variable
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueDocstrings.i46 ) lldb::SBValue;
102 ) lldb::SBValue::GetChildAtIndex;
115 ) lldb::SBValue::GetIndexOfChildWithName;
133 ) lldb::SBValue::GetChildMemberWithName;
136 ) lldb::SBValue::GetValueForExpressionPath;
155 ) lldb::SBValue::GetValueAsAddress;
167 ) lldb::SBValue::GetNumChildren;
172 ) lldb::SBValue::Watch;
177 ) lldb::SBValue::WatchPointee;
195 ) lldb::SBValue::GetPointeeData;
[all …]
H A DSBValueExtensions.i1 STRING_EXTENSION_OUTSIDE(SBValue)
2 %extend lldb::SBValue {
6 '''Helper function for the "SBValue.dynamic" property.'''
29 '''An accessor function that returns a children_access() object which allows lazy member variable access from a lldb.SBValue object.'''
33 '''An accessor function that returns a list() that contains all children in a lldb.SBValue object.'''
44 '''Iterate over all child values of a lldb.SBValue object.'''
48 '''Return the number of child values of a lldb.SBValue object.'''
51 children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''')
57 format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used for lldb.SBValue().GetValue() for this value. See enumerations that start with "lldb.eFormat".''')
64 deref = property(Dereference, None, doc='''A read only property that returns an lldb.SBValue tha
[all...]
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig8 PythonObject SWIGBridge::ToSWIGWrapper(std::unique_ptr<lldb::SBValue> value_sb) {
13 return ToSWIGWrapper(std::unique_ptr<lldb::SBValue>(new lldb::SBValue(value_sp)));
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3756 SWIGINTERN std::string lldb_SBValue___repr__(lldb::SBValue *self){ in lldb_SBValue___repr__()
30933 lldb::SBValue result; in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30946 lldb::SBValue * resultptr = new lldb::SBValue(result); in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30964 lldb::SBValue result; in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30979 lldb::SBValue * resultptr = new lldb::SBValue(result); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30998 lldb::SBValue result; in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31015 lldb::SBValue * resultptr = new lldb::SBValue(result); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31033 lldb::SBValue result; in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31052 lldb::SBValue * resultptr = new lldb::SBValue(result); in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31603 lldb::SBValue result; in _wrap_SBFrame_FindRegister()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h30 class SBValue; variable
83 static PythonObject ToSWIGWrapper(std::unique_ptr<lldb::SBValue> value_sb);

12