Lines Matching refs:lldb
51 using namespace lldb;
58 ValueImpl(lldb::ValueObjectSP in_valobj_sp, in ValueImpl()
59 lldb::DynamicValueType use_dynamic, bool use_synthetic, in ValueImpl()
65 lldb::eNoDynamicValues, false))) { in ValueImpl()
106 lldb::ValueObjectSP GetRootSP() { return m_valobj_sp; } in GetRootSP()
108 lldb::ValueObjectSP GetSP(Process::StopLocker &stop_locker, in GetSP()
116 lldb::ValueObjectSP value_sp = m_valobj_sp; in GetSP()
153 void SetUseDynamic(lldb::DynamicValueType use_dynamic) { in SetUseDynamic()
159 lldb::DynamicValueType GetUseDynamic() { return m_use_dynamic; } in GetUseDynamic()
196 lldb::ValueObjectSP m_valobj_sp;
197 lldb::DynamicValueType m_use_dynamic;
220 SBValue::SBValue(const lldb::ValueObjectSP &value_sp) { in SBValue()
221 LLDB_RECORD_CONSTRUCTOR(SBValue, (const lldb::ValueObjectSP &), value_sp); in SBValue()
227 LLDB_RECORD_CONSTRUCTOR(SBValue, (const lldb::SBValue &), rhs); in SBValue()
233 LLDB_RECORD_METHOD(lldb::SBValue &, in operator =()
234 SBValue, operator=,(const lldb::SBValue &), rhs); in operator =()
265 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBValue, GetError); in GetError()
270 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetError()
281 LLDB_RECORD_METHOD_NO_ARGS(lldb::user_id_t, SBValue, GetID); in GetID()
284 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetID()
295 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetName()
307 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetTypeName()
320 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetDisplayTypeName()
334 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetByteSize()
348 lldb::ValueObjectSP value_sp(GetSP(locker)); in IsInScope()
361 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValue()
370 LLDB_RECORD_METHOD_NO_ARGS(lldb::ValueType, SBValue, GetValueType); in GetValueType()
374 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueType()
386 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetObjectDescription()
395 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBValue, GetType); in GetType()
399 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetType()
414 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueDidChange()
428 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetSummary()
436 const char *SBValue::GetSummary(lldb::SBStream &stream, in GetSummary()
437 lldb::SBTypeSummaryOptions &options) { in GetSummary()
439 (lldb::SBStream &, lldb::SBTypeSummaryOptions &), stream, in GetSummary()
443 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetSummary()
458 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetLocation()
470 lldb::SBError dummy; in SetValueFromCString()
474 bool SBValue::SetValueFromCString(const char *value_str, lldb::SBError &error) { in SetValueFromCString()
476 (const char *, lldb::SBError &), value_str, error); in SetValueFromCString()
480 lldb::ValueObjectSP value_sp(GetSP(locker)); in SetValueFromCString()
490 lldb::SBTypeFormat SBValue::GetTypeFormat() { in GetTypeFormat()
491 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeFormat, SBValue, GetTypeFormat); in GetTypeFormat()
493 lldb::SBTypeFormat format; in GetTypeFormat()
495 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetTypeFormat()
498 lldb::TypeFormatImplSP format_sp = value_sp->GetValueFormat(); in GetTypeFormat()
506 lldb::SBTypeSummary SBValue::GetTypeSummary() { in GetTypeSummary()
507 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeSummary, SBValue, GetTypeSummary); in GetTypeSummary()
509 lldb::SBTypeSummary summary; in GetTypeSummary()
511 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetTypeSummary()
514 lldb::TypeSummaryImplSP summary_sp = value_sp->GetSummaryFormat(); in GetTypeSummary()
522 lldb::SBTypeFilter SBValue::GetTypeFilter() { in GetTypeFilter()
523 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeFilter, SBValue, GetTypeFilter); in GetTypeFilter()
525 lldb::SBTypeFilter filter; in GetTypeFilter()
527 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetTypeFilter()
530 lldb::SyntheticChildrenSP synthetic_sp = value_sp->GetSyntheticChildren(); in GetTypeFilter()
542 lldb::SBTypeSynthetic SBValue::GetTypeSynthetic() { in GetTypeSynthetic()
543 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeSynthetic, SBValue, GetTypeSynthetic); in GetTypeSynthetic()
545 lldb::SBTypeSynthetic synthetic; in GetTypeSynthetic()
547 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetTypeSynthetic()
550 lldb::SyntheticChildrenSP children_sp = value_sp->GetSyntheticChildren(); in GetTypeSynthetic()
562 lldb::SBValue SBValue::CreateChildAtOffset(const char *name, uint32_t offset, in CreateChildAtOffset()
564 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, CreateChildAtOffset, in CreateChildAtOffset()
565 (const char *, uint32_t, lldb::SBType), name, offset, in CreateChildAtOffset()
568 lldb::SBValue sb_value; in CreateChildAtOffset()
570 lldb::ValueObjectSP value_sp(GetSP(locker)); in CreateChildAtOffset()
571 lldb::ValueObjectSP new_value_sp; in CreateChildAtOffset()
583 lldb::SBValue SBValue::Cast(SBType type) { in Cast()
584 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, Cast, (lldb::SBType), type); in Cast()
586 lldb::SBValue sb_value; in Cast()
588 lldb::ValueObjectSP value_sp(GetSP(locker)); in Cast()
596 lldb::SBValue SBValue::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
598 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, CreateValueFromExpression, in CreateValueFromExpression()
607 lldb::SBValue SBValue::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
610 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, CreateValueFromExpression, in CreateValueFromExpression()
611 (const char *, const char *, lldb::SBExpressionOptions &), in CreateValueFromExpression()
614 lldb::SBValue sb_value; in CreateValueFromExpression()
616 lldb::ValueObjectSP value_sp(GetSP(locker)); in CreateValueFromExpression()
617 lldb::ValueObjectSP new_value_sp; in CreateValueFromExpression()
629 lldb::SBValue SBValue::CreateValueFromAddress(const char *name, in CreateValueFromAddress()
630 lldb::addr_t address, in CreateValueFromAddress()
632 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, CreateValueFromAddress, in CreateValueFromAddress()
633 (const char *, lldb::addr_t, lldb::SBType), name, address, in CreateValueFromAddress()
636 lldb::SBValue sb_value; in CreateValueFromAddress()
638 lldb::ValueObjectSP value_sp(GetSP(locker)); in CreateValueFromAddress()
639 lldb::ValueObjectSP new_value_sp; in CreateValueFromAddress()
640 lldb::TypeImplSP type_impl_sp(sb_type.GetSP()); in CreateValueFromAddress()
651 lldb::SBValue SBValue::CreateValueFromData(const char *name, SBData data, in CreateValueFromData()
653 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, CreateValueFromData, in CreateValueFromData()
654 (const char *, lldb::SBData, lldb::SBType), name, data, in CreateValueFromData()
657 lldb::SBValue sb_value; in CreateValueFromData()
658 lldb::ValueObjectSP new_value_sp; in CreateValueFromData()
660 lldb::ValueObjectSP value_sp(GetSP(locker)); in CreateValueFromData()
661 lldb::TypeImplSP type_impl_sp(sb_type.GetSP()); in CreateValueFromData()
673 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetChildAtIndex, (uint32_t), idx); in GetChildAtIndex()
676 lldb::DynamicValueType use_dynamic = eNoDynamicValues; in GetChildAtIndex()
689 lldb::DynamicValueType use_dynamic, in GetChildAtIndex()
691 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetChildAtIndex, in GetChildAtIndex()
692 (uint32_t, lldb::DynamicValueType, bool), idx, use_dynamic, in GetChildAtIndex()
695 lldb::ValueObjectSP child_sp; in GetChildAtIndex()
698 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetChildAtIndex()
719 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetIndexOfChildWithName()
727 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName, in GetChildMemberWithName()
730 lldb::DynamicValueType use_dynamic_value = eNoDynamicValues; in GetChildMemberWithName()
742 lldb::DynamicValueType use_dynamic_value) { in GetChildMemberWithName()
743 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName, in GetChildMemberWithName()
744 (const char *, lldb::DynamicValueType), name, in GetChildMemberWithName()
747 lldb::ValueObjectSP child_sp; in GetChildMemberWithName()
751 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetChildMemberWithName()
762 lldb::SBValue SBValue::GetDynamicValue(lldb::DynamicValueType use_dynamic) { in GetDynamicValue()
763 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetDynamicValue, in GetDynamicValue()
764 (lldb::DynamicValueType), use_dynamic); in GetDynamicValue()
775 lldb::SBValue SBValue::GetStaticValue() { in GetStaticValue()
776 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBValue, GetStaticValue); in GetStaticValue()
788 lldb::SBValue SBValue::GetNonSyntheticValue() { in GetNonSyntheticValue()
789 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBValue, GetNonSyntheticValue); in GetNonSyntheticValue()
800 lldb::DynamicValueType SBValue::GetPreferDynamicValue() { in GetPreferDynamicValue()
801 LLDB_RECORD_METHOD_NO_ARGS(lldb::DynamicValueType, SBValue, in GetPreferDynamicValue()
809 void SBValue::SetPreferDynamicValue(lldb::DynamicValueType use_dynamic) { in SetPreferDynamicValue()
811 (lldb::DynamicValueType), use_dynamic); in SetPreferDynamicValue()
837 lldb::ValueObjectSP value_sp(GetSP(locker)); in IsDynamic()
847 lldb::ValueObjectSP value_sp(GetSP(locker)); in IsSynthetic()
857 lldb::ValueObjectSP value_sp(GetSP(locker)); in IsSyntheticChildrenGenerated()
867 lldb::ValueObjectSP value_sp(GetSP(locker)); in SetSyntheticChildrenGenerated()
872 lldb::SBValue SBValue::GetValueForExpressionPath(const char *expr_path) { in GetValueForExpressionPath()
873 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, GetValueForExpressionPath, in GetValueForExpressionPath()
876 lldb::ValueObjectSP child_sp; in GetValueForExpressionPath()
878 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueForExpressionPath()
892 (lldb::SBError &, int64_t), error, fail_value); in GetValueAsSigned()
896 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueAsSigned()
913 (lldb::SBError &, uint64_t), error, fail_value); in GetValueAsUnsigned()
917 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueAsUnsigned()
936 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueAsSigned()
948 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetValueAsUnsigned()
960 lldb::ValueObjectSP value_sp(GetSP(locker)); in MightHaveChildren()
972 lldb::ValueObjectSP value_sp(GetSP(locker)); in IsRuntimeSupportValue()
991 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetNumChildren()
999 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBValue, Dereference); in Dereference()
1003 lldb::ValueObjectSP value_sp(GetSP(locker)); in Dereference()
1023 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetOpaqueType()
1029 lldb::SBTarget SBValue::GetTarget() { in GetTarget()
1030 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTarget, SBValue, GetTarget); in GetTarget()
1042 lldb::SBProcess SBValue::GetProcess() { in GetProcess()
1043 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBValue, GetProcess); in GetProcess()
1055 lldb::SBThread SBValue::GetThread() { in GetThread()
1056 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBThread, SBValue, GetThread); in GetThread()
1068 lldb::SBFrame SBValue::GetFrame() { in GetFrame()
1069 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFrame, SBValue, GetFrame); in GetFrame()
1081 lldb::ValueObjectSP SBValue::GetSP(ValueLocker &locker) const { in GetSP()
1089 lldb::ValueObjectSP SBValue::GetSP() const { in GetSP()
1090 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::ValueObjectSP, SBValue, GetSP); in GetSP()
1098 void SBValue::SetSP(const lldb::ValueObjectSP &sp) { in SetSP()
1100 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1102 lldb::DynamicValueType use_dynamic = target_sp->GetPreferDynamicValue(); in SetSP()
1112 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1113 lldb::DynamicValueType use_dynamic) { in SetSP()
1115 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1126 void SBValue::SetSP(const lldb::ValueObjectSP &sp, bool use_synthetic) { in SetSP()
1128 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1130 lldb::DynamicValueType use_dynamic = target_sp->GetPreferDynamicValue(); in SetSP()
1138 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1139 lldb::DynamicValueType use_dynamic, bool use_synthetic) { in SetSP()
1143 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1144 lldb::DynamicValueType use_dynamic, bool use_synthetic, in SetSP()
1151 LLDB_RECORD_METHOD(bool, SBValue, GetExpressionPath, (lldb::SBStream &), in GetExpressionPath()
1155 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetExpressionPath()
1165 LLDB_RECORD_METHOD(bool, SBValue, GetExpressionPath, (lldb::SBStream &, bool), in GetExpressionPath()
1169 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetExpressionPath()
1177 lldb::SBValue SBValue::EvaluateExpression(const char *expr) const { in EvaluateExpression()
1178 LLDB_RECORD_METHOD_CONST(lldb::SBValue, SBValue, EvaluateExpression, in EvaluateExpression()
1182 lldb::ValueObjectSP value_sp(GetSP(locker)); in EvaluateExpression()
1186 lldb::TargetSP target_sp = value_sp->GetTargetSP(); in EvaluateExpression()
1190 lldb::SBExpressionOptions options; in EvaluateExpression()
1198 lldb::SBValue
1201 LLDB_RECORD_METHOD_CONST(lldb::SBValue, SBValue, EvaluateExpression, in EvaluateExpression()
1202 (const char *, const lldb::SBExpressionOptions &), in EvaluateExpression()
1208 lldb::SBValue SBValue::EvaluateExpression(const char *expr, in EvaluateExpression()
1212 lldb::SBValue, SBValue, EvaluateExpression, in EvaluateExpression()
1213 (const char *, const lldb::SBExpressionOptions &, const char *), expr, in EvaluateExpression()
1223 lldb::ValueObjectSP value_sp(GetSP(locker)); in EvaluateExpression()
1228 lldb::TargetSP target_sp = value_sp->GetTargetSP(); in EvaluateExpression()
1254 LLDB_RECORD_METHOD(bool, SBValue, GetDescription, (lldb::SBStream &), in GetDescription()
1260 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetDescription()
1269 lldb::Format SBValue::GetFormat() { in GetFormat()
1270 LLDB_RECORD_METHOD_NO_ARGS(lldb::Format, SBValue, GetFormat); in GetFormat()
1273 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetFormat()
1279 void SBValue::SetFormat(lldb::Format format) { in SetFormat()
1280 LLDB_RECORD_METHOD(void, SBValue, SetFormat, (lldb::Format), format); in SetFormat()
1283 lldb::ValueObjectSP value_sp(GetSP(locker)); in SetFormat()
1288 lldb::SBValue SBValue::AddressOf() { in AddressOf()
1289 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBValue, AddressOf); in AddressOf()
1293 lldb::ValueObjectSP value_sp(GetSP(locker)); in AddressOf()
1303 lldb::addr_t SBValue::GetLoadAddress() { in GetLoadAddress()
1304 LLDB_RECORD_METHOD_NO_ARGS(lldb::addr_t, SBValue, GetLoadAddress); in GetLoadAddress()
1306 lldb::addr_t value = LLDB_INVALID_ADDRESS; in GetLoadAddress()
1308 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetLoadAddress()
1333 lldb::SBAddress SBValue::GetAddress() { in GetAddress()
1334 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBValue, GetAddress); in GetAddress()
1338 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetAddress()
1342 lldb::addr_t value = LLDB_INVALID_ADDRESS; in GetAddress()
1362 lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) { in GetPointeeData()
1363 LLDB_RECORD_METHOD(lldb::SBData, SBValue, GetPointeeData, in GetPointeeData()
1366 lldb::SBData sb_data; in GetPointeeData()
1368 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetPointeeData()
1382 lldb::SBData SBValue::GetData() { in GetData()
1383 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBData, SBValue, GetData); in GetData()
1385 lldb::SBData sb_data; in GetData()
1387 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetData()
1399 bool SBValue::SetData(lldb::SBData &data, SBError &error) { in SetData()
1400 LLDB_RECORD_METHOD(bool, SBValue, SetData, (lldb::SBData &, lldb::SBError &), in SetData()
1404 lldb::ValueObjectSP value_sp(GetSP(locker)); in SetData()
1434 lldb::SBDeclaration SBValue::GetDeclaration() { in GetDeclaration()
1435 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBDeclaration, SBValue, GetDeclaration); in GetDeclaration()
1438 lldb::ValueObjectSP value_sp(GetSP(locker)); in GetDeclaration()
1448 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, bool write, in Watch()
1450 LLDB_RECORD_METHOD(lldb::SBWatchpoint, SBValue, Watch, in Watch()
1451 (bool, bool, bool, lldb::SBError &), resolve_location, in Watch()
1458 lldb::ValueObjectSP value_sp(GetSP(locker)); in Watch()
1513 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, in Watch()
1515 LLDB_RECORD_METHOD(lldb::SBWatchpoint, SBValue, Watch, (bool, bool, bool), in Watch()
1522 lldb::SBWatchpoint SBValue::WatchPointee(bool resolve_location, bool read, in WatchPointee()
1524 LLDB_RECORD_METHOD(lldb::SBWatchpoint, SBValue, WatchPointee, in WatchPointee()
1525 (bool, bool, bool, lldb::SBError &), resolve_location, in WatchPointee()
1534 lldb::SBValue SBValue::Persist() { in Persist()
1535 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBValue, Persist); in Persist()
1538 lldb::ValueObjectSP value_sp(GetSP(locker)); in Persist()
1552 LLDB_REGISTER_CONSTRUCTOR(SBValue, (const lldb::ValueObjectSP &)); in RegisterMethods()
1553 LLDB_REGISTER_CONSTRUCTOR(SBValue, (const lldb::SBValue &)); in RegisterMethods()
1554 LLDB_REGISTER_METHOD(lldb::SBValue &, in RegisterMethods()
1555 SBValue, operator=,(const lldb::SBValue &)); in RegisterMethods()
1559 LLDB_REGISTER_METHOD(lldb::SBError, SBValue, GetError, ()); in RegisterMethods()
1560 LLDB_REGISTER_METHOD(lldb::user_id_t, SBValue, GetID, ()); in RegisterMethods()
1567 LLDB_REGISTER_METHOD(lldb::ValueType, SBValue, GetValueType, ()); in RegisterMethods()
1569 LLDB_REGISTER_METHOD(lldb::SBType, SBValue, GetType, ()); in RegisterMethods()
1573 (lldb::SBStream &, lldb::SBTypeSummaryOptions &)); in RegisterMethods()
1577 (const char *, lldb::SBError &)); in RegisterMethods()
1578 LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBValue, GetTypeFormat, ()); in RegisterMethods()
1579 LLDB_REGISTER_METHOD(lldb::SBTypeSummary, SBValue, GetTypeSummary, ()); in RegisterMethods()
1580 LLDB_REGISTER_METHOD(lldb::SBTypeFilter, SBValue, GetTypeFilter, ()); in RegisterMethods()
1581 LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBValue, GetTypeSynthetic, ()); in RegisterMethods()
1582 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateChildAtOffset, in RegisterMethods()
1583 (const char *, uint32_t, lldb::SBType)); in RegisterMethods()
1584 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Cast, (lldb::SBType)); in RegisterMethods()
1585 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromExpression, in RegisterMethods()
1588 lldb::SBValue, SBValue, CreateValueFromExpression, in RegisterMethods()
1589 (const char *, const char *, lldb::SBExpressionOptions &)); in RegisterMethods()
1590 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromAddress, in RegisterMethods()
1591 (const char *, lldb::addr_t, lldb::SBType)); in RegisterMethods()
1592 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromData, in RegisterMethods()
1593 (const char *, lldb::SBData, lldb::SBType)); in RegisterMethods()
1594 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildAtIndex, (uint32_t)); in RegisterMethods()
1595 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildAtIndex, in RegisterMethods()
1596 (uint32_t, lldb::DynamicValueType, bool)); in RegisterMethods()
1599 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName, in RegisterMethods()
1601 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName, in RegisterMethods()
1602 (const char *, lldb::DynamicValueType)); in RegisterMethods()
1603 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetDynamicValue, in RegisterMethods()
1604 (lldb::DynamicValueType)); in RegisterMethods()
1605 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetStaticValue, ()); in RegisterMethods()
1606 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetNonSyntheticValue, ()); in RegisterMethods()
1607 LLDB_REGISTER_METHOD(lldb::DynamicValueType, SBValue, GetPreferDynamicValue, in RegisterMethods()
1610 (lldb::DynamicValueType)); in RegisterMethods()
1617 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetValueForExpressionPath, in RegisterMethods()
1620 (lldb::SBError &, int64_t)); in RegisterMethods()
1622 (lldb::SBError &, uint64_t)); in RegisterMethods()
1629 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Dereference, ()); in RegisterMethods()
1632 LLDB_REGISTER_METHOD(lldb::SBTarget, SBValue, GetTarget, ()); in RegisterMethods()
1633 LLDB_REGISTER_METHOD(lldb::SBProcess, SBValue, GetProcess, ()); in RegisterMethods()
1634 LLDB_REGISTER_METHOD(lldb::SBThread, SBValue, GetThread, ()); in RegisterMethods()
1635 LLDB_REGISTER_METHOD(lldb::SBFrame, SBValue, GetFrame, ()); in RegisterMethods()
1636 LLDB_REGISTER_METHOD_CONST(lldb::ValueObjectSP, SBValue, GetSP, ()); in RegisterMethods()
1637 LLDB_REGISTER_METHOD(bool, SBValue, GetExpressionPath, (lldb::SBStream &)); in RegisterMethods()
1639 (lldb::SBStream &, bool)); in RegisterMethods()
1640 LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValue, EvaluateExpression, in RegisterMethods()
1643 lldb::SBValue, SBValue, EvaluateExpression, in RegisterMethods()
1644 (const char *, const lldb::SBExpressionOptions &)); in RegisterMethods()
1646 lldb::SBValue, SBValue, EvaluateExpression, in RegisterMethods()
1647 (const char *, const lldb::SBExpressionOptions &, const char *)); in RegisterMethods()
1648 LLDB_REGISTER_METHOD(bool, SBValue, GetDescription, (lldb::SBStream &)); in RegisterMethods()
1649 LLDB_REGISTER_METHOD(lldb::Format, SBValue, GetFormat, ()); in RegisterMethods()
1650 LLDB_REGISTER_METHOD(void, SBValue, SetFormat, (lldb::Format)); in RegisterMethods()
1651 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, AddressOf, ()); in RegisterMethods()
1652 LLDB_REGISTER_METHOD(lldb::addr_t, SBValue, GetLoadAddress, ()); in RegisterMethods()
1653 LLDB_REGISTER_METHOD(lldb::SBAddress, SBValue, GetAddress, ()); in RegisterMethods()
1654 LLDB_REGISTER_METHOD(lldb::SBData, SBValue, GetPointeeData, in RegisterMethods()
1656 LLDB_REGISTER_METHOD(lldb::SBData, SBValue, GetData, ()); in RegisterMethods()
1658 (lldb::SBData &, lldb::SBError &)); in RegisterMethods()
1659 LLDB_REGISTER_METHOD(lldb::SBDeclaration, SBValue, GetDeclaration, ()); in RegisterMethods()
1660 LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, Watch, in RegisterMethods()
1661 (bool, bool, bool, lldb::SBError &)); in RegisterMethods()
1662 LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, Watch, in RegisterMethods()
1664 LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, WatchPointee, in RegisterMethods()
1665 (bool, bool, bool, lldb::SBError &)); in RegisterMethods()
1666 LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Persist, ()); in RegisterMethods()