Home
last modified time | relevance | path

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

123

/external/llvm-project/lldb/source/API/
DSBValue.cpp218 SBValue::SBValue() : m_opaque_sp() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBValue); } in SBValue() function in SBValue
220 SBValue::SBValue(const lldb::ValueObjectSP &value_sp) { in SBValue() function in SBValue
221 LLDB_RECORD_CONSTRUCTOR(SBValue, (const lldb::ValueObjectSP &), value_sp); in SBValue()
226 SBValue::SBValue(const SBValue &rhs) { in SBValue() function in SBValue
227 LLDB_RECORD_CONSTRUCTOR(SBValue, (const lldb::SBValue &), rhs); in SBValue()
232 SBValue &SBValue::operator=(const SBValue &rhs) { in operator =()
233 LLDB_RECORD_METHOD(lldb::SBValue &, in operator =()
234 SBValue, operator=,(const lldb::SBValue &), rhs); in operator =()
242 SBValue::~SBValue() = default;
244 bool SBValue::IsValid() { in IsValid()
[all …]
DSBValueList.cpp35 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append()
42 lldb::SBValue GetValueAtIndex(uint32_t index) { in GetValueAtIndex()
44 return lldb::SBValue(); in GetValueAtIndex()
48 lldb::SBValue FindValueByUID(lldb::user_id_t uid) { in FindValueByUID()
53 return lldb::SBValue(); in FindValueByUID()
56 lldb::SBValue GetFirstValueByName(const char *name) const { in GetFirstValueByName()
63 return lldb::SBValue(); in GetFirstValueByName()
67 std::vector<lldb::SBValue> m_values;
127 void SBValueList::Append(const SBValue &val_obj) { in Append()
128 LLDB_RECORD_METHOD(void, SBValueList, Append, (const lldb::SBValue &), in Append()
[all …]
DSBFrame.cpp446 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path) { in GetValueForVariablePath()
447 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in GetValueForVariablePath()
450 SBValue sb_value; in GetValueForVariablePath()
464 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path, in GetValueForVariablePath()
466 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in GetValueForVariablePath()
470 SBValue sb_value; in GetValueForVariablePath()
500 SBValue SBFrame::FindVariable(const char *name) { in FindVariable()
501 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindVariable, (const char *), in FindVariable()
504 SBValue value; in FindVariable()
518 SBValue SBFrame::FindVariable(const char *name, in FindVariable()
[all …]
DSBTarget.cpp1486 SBValue SBTarget::CreateValueFromAddress(const char *name, SBAddress addr, in CreateValueFromAddress()
1488 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromAddress, in CreateValueFromAddress()
1492 SBValue sb_value; in CreateValueFromAddress()
1506 lldb::SBValue SBTarget::CreateValueFromData(const char *name, lldb::SBData data, in CreateValueFromData()
1508 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromData, in CreateValueFromData()
1512 SBValue sb_value; in CreateValueFromData()
1526 lldb::SBValue SBTarget::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
1528 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromExpression, in CreateValueFromExpression()
1531 SBValue sb_value; in CreateValueFromExpression()
1962 sb_value_list.Append(SBValue(valobj_sp)); in FindGlobalVariables()
[all …]
DSBThread.cpp343 SBValue SBThread::GetStopReturnValue() { in GetStopReturnValue()
344 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBThread, GetStopReturnValue); in GetStopReturnValue()
360 return LLDB_RECORD_RESULT(SBValue(return_valobj_sp)); in GetStopReturnValue()
973 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame()
975 (lldb::SBFrame &, lldb::SBValue &), frame, return_value); in ReturnFromFrame()
1311 SBValue SBThread::GetCurrentException() { in GetCurrentException()
1312 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBThread, GetCurrentException); in GetCurrentException()
1316 return LLDB_RECORD_RESULT(SBValue()); in GetCurrentException()
1318 return LLDB_RECORD_RESULT(SBValue(thread_sp->GetCurrentException())); in GetCurrentException()
1375 LLDB_REGISTER_METHOD(lldb::SBValue, SBThread, GetStopReturnValue, ()); in RegisterMethods()
[all …]
DSBTypeSummary.cpp177 SBValue sb_value(valobj.GetSP()); in CreateWithCallback()
329 bool SBTypeSummary::DoesPrintValue(lldb::SBValue value) { in DoesPrintValue()
330 LLDB_RECORD_METHOD(bool, SBTypeSummary, DoesPrintValue, (lldb::SBValue), in DoesPrintValue()
523 LLDB_REGISTER_METHOD(bool, SBTypeSummary, DoesPrintValue, (lldb::SBValue)); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBValue.h21 class LLDB_API SBValue {
23 SBValue();
25 SBValue(const lldb::SBValue &rhs);
27 lldb::SBValue &operator=(const lldb::SBValue &rhs);
29 ~SBValue();
78 lldb::SBValue GetDynamicValue(lldb::DynamicValueType use_dynamic);
80 lldb::SBValue GetStaticValue();
82 lldb::SBValue GetNonSyntheticValue();
115 lldb::SBValue GetChildAtIndex(uint32_t idx);
117 lldb::SBValue CreateChildAtOffset(const char *name, uint32_t offset,
[all …]
DSBFrame.h100 lldb::SBValue EvaluateExpression(const char *expr);
102 lldb::SBValue EvaluateExpression(const char *expr,
105 lldb::SBValue EvaluateExpression(const char *expr,
109 lldb::SBValue EvaluateExpression(const char *expr,
151 lldb::SBValue FindRegister(const char *name);
155 lldb::SBValue FindVariable(const char *var_name);
157 lldb::SBValue FindVariable(const char *var_name,
165 lldb::SBValue GetValueForVariablePath(const char *var_expr_cstr,
170 lldb::SBValue GetValueForVariablePath(const char *var_path);
180 lldb::SBValue FindValue(const char *name, ValueType value_type);
[all …]
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);
DSBTypeSummary.h39 friend class SBValue;
62 typedef bool (*FormatCallback)(SBValue, SBTypeSummaryOptions, SBStream &);
111 bool DoesPrintValue(lldb::SBValue value);
122 friend class SBValue; variable
DSBThread.h79 SBValue GetStopReturnValue();
135 SBError ReturnFromFrame(SBFrame &frame, SBValue &return_value);
202 SBValue GetCurrentException();
216 friend class SBValue; variable
DSBTarget.h436 lldb::SBValue FindFirstGlobalVariable(const char *name);
778 lldb::SBValue CreateValueFromAddress(const char *name, lldb::SBAddress addr,
781 lldb::SBValue CreateValueFromData(const char *name, lldb::SBData data,
784 lldb::SBValue CreateValueFromExpression(const char *name, const char *expr);
824 lldb::SBValue EvaluateExpression(const char *expr);
826 lldb::SBValue EvaluateExpression(const char *expr,
850 friend class SBValue; variable
DSBDeclaration.h54 friend class SBValue;
DSBTypeSynthetic.h65 friend class SBValue; variable
DSBTypeFilter.h59 friend class SBValue; variable
/external/llvm-project/lldb/bindings/interface/
DSBValue.i56 ) SBValue;
57 class SBValue
60 SBValue ();
62 SBValue (const SBValue &rhs);
64 ~SBValue ();
132 lldb::SBValue
135 lldb::SBValue
138 lldb::SBValue
186 lldb::SBValue
243 lldb::SBValue
[all …]
DSBFrame.i166 lldb::SBValue
169 lldb::SBValue
172 lldb::SBValue
175 lldb::SBValue
237 lldb::SBValue
240 lldb::SBValue
243 lldb::SBValue
267 lldb::SBValue
270 lldb::SBValue
279 lldb::SBValue
[all …]
DSBValueList.i87 Append (const lldb::SBValue &val_obj);
95 lldb::SBValue
98 lldb::SBValue
101 lldb::SBValue
DSBTarget.i503 lldb::SBValue
894 lldb::SBValue
897 lldb::SBValue
900 lldb::SBValue
967 lldb::SBValue
970 lldb::SBValue
DSBThread.i132 SBValue
277 ReturnFromFrame (SBFrame &frame, SBValue &return_value);
385 lldb::SBValue
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.h185 void SetValueForKey(lldb::SBValue &v, llvm::json::Object &object,
441 llvm::json::Value CreateVariable(lldb::SBValue v, int64_t variablesReference,
DVSCodeForward.h42 class SBValue; variable
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_valuelist.py9 obj.Append(lldb.SBValue())
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig134 lldb::SBValue sb_value (valobj_sp);
216 // I do not want the SBValue to be deallocated when going out of scope because python
218 lldb::SBValue *sb_value = new lldb::SBValue(valobj_sp);
680 lldb::SBValue* sbvalue_ptr = nullptr;
775 lldb::SBValue* sbvalue_ptr = NULL;
794 lldb::SBValue* sb_ptr = NULL;
1107 lldb::SBValue value_sb(value);
1150 #include "lldb/API/SBValue.h"
1158 lldb::SBValue* sb_ptr = (lldb::SBValue *)data;
/external/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/
Doperating_system.py29 self.g_value = lldb.SBValue()

123