Home
last modified time | relevance | path

Searched refs:value_sp (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp271 if (value_sp) in GetError()
285 if (value_sp) in GetID()
296 if (value_sp) in GetName()
375 if (value_sp) in GetValueType()
838 if (value_sp) in IsDynamic()
848 if (value_sp) in IsSynthetic()
858 if (value_sp) in IsSyntheticChildrenGenerated()
868 if (value_sp) in SetSyntheticChildrenGenerated()
961 if (value_sp) in MightHaveChildren()
973 if (value_sp) in IsRuntimeSupportValue()
[all …]
H A DSBFrame.cpp493 sb_value.SetSP(value_sp, use_dynamic); in GetValueForVariablePath()
530 ValueObjectSP value_sp; in FindVariable() local
544 if (value_sp) in FindVariable()
545 sb_value.SetSP(value_sp, use_dynamic); in FindVariable()
583 ValueObjectSP value_sp; in FindValue() local
628 sb_value.SetSP(value_sp, use_dynamic); in FindValue()
645 sb_value.SetSP(value_sp); in FindValue()
664 value_sp = in FindValue()
666 sb_value.SetSP(value_sp); in FindValue()
942 ValueObjectSP value_sp; in FindRegister() local
[all …]
H A DSBTypeSummary.cpp335 lldb::ValueObjectSP value_sp = value.GetSP(); in DoesPrintValue() local
336 return m_opaque_sp->DoesPrintValue(value_sp.get()); in DoesPrintValue()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h55 lldb::OptionValueSP value_sp; variable
57 value_sp = m_values[idx];
58 return value_sp;
62 lldb::OptionValueSP value_sp; in GetValueAtIndex() local
64 value_sp = m_values[idx]; in GetValueAtIndex()
65 return value_sp; in GetValueAtIndex()
71 if (value_sp && (m_type_mask & value_sp->GetTypeAsMask())) { in AppendValue()
72 m_values.push_back(value_sp); in AppendValue()
81 if (value_sp && (m_type_mask & value_sp->GetTypeAsMask())) { in InsertValue()
94 if (value_sp && (m_type_mask & value_sp->GetTypeAsMask())) { in ReplaceValue()
[all …]
H A DProperty.h41 const lldb::OptionValueSP &value_sp);
50 void SetOptionValue(const lldb::OptionValueSP &value_sp) { in SetOptionValue() argument
51 m_value_sp = value_sp; in SetOptionValue()
H A DOptionValueDictionary.h66 const lldb::OptionValueSP &value_sp,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h198 if (value_sp.get()) { in GetItemAtIndexAsInteger()
218 if (value_sp.get()) { in GetItemAtIndexAsString()
237 if (value_sp.get()) { in GetItemAtIndexAsString()
257 if (value_sp.get()) { in GetItemAtIndexAsDictionary()
267 if (value_sp.get()) { in GetItemAtIndexAsArray()
380 ObjectSP value_sp; in GetValueForKey() local
387 return value_sp; in GetValueForKey()
393 if (value_sp.get()) { in GetValueForKeyAsBoolean()
405 if (value_sp) { in GetValueForKeyAsInteger()
426 if (value_sp.get()) { in GetValueForKeyAsString()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp287 if (value_sp.get() != nullptr) { in LoadStateFromDictionary()
294 if (value_sp.get() == nullptr) in LoadStateFromDictionary()
297 start_address = value_sp->GetUInt64Value(); in LoadStateFromDictionary()
299 value_sp = mem_dict->GetValueForKey(data_key); in LoadStateFromDictionary()
308 value_sp = mem_array->GetValueAtIndex(i); in LoadStateFromDictionary()
309 if (value_sp.get() == nullptr) in LoadStateFromDictionary()
318 if (value_sp.get() == nullptr) in LoadStateFromDictionary()
331 if (value_sp.get() == nullptr) in LoadStateFromDictionary()
338 value_sp = reg_dict->GetValueForKey(cpsr_name); in LoadStateFromDictionary()
339 if (value_sp.get() == nullptr) in LoadStateFromDictionary()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp166 if (value_sp) { in SetArgs()
216 lldb::OptionValueSP value_sp; in GetSubValue() local
250 value_sp = GetValueForKey(ConstString(key)); in GetSubValue()
251 if (!value_sp) { in GetSubValue()
259 return value_sp; in GetSubValue()
270 if (value_sp) in SetSubValue()
281 lldb::OptionValueSP value_sp; in GetValueForKey() local
284 value_sp = pos->second; in GetValueForKey()
285 return value_sp; in GetValueForKey()
293 if (value_sp && (m_type_mask & value_sp->GetTypeAsMask())) { in SetValueForKey()
[all …]
H A DOptionValueProperties.cpp81 lldb::OptionValueSP value_sp; in GetValueForKey() local
85 return value_sp; in GetValueForKey()
92 lldb::OptionValueSP value_sp; in GetSubValue() local
107 return value_sp; in GetSubValue()
134 value_sp.reset(); in GetSubValue()
137 return value_sp; in GetSubValue()
154 if (value_sp) in SetSubValue()
197 if (value_sp) in GetPropertyAtIndexAsOptionValuePathMappings()
206 if (value_sp) in GetPropertyAtIndexAsOptionValueFileSpecList()
451 if (value_sp) in GetPropertyAtIndexAsOptionValueString()
[all …]
H A DOptionValueArray.cpp181 lldb::OptionValueSP value_sp(CreateValueFromCStringForTypeMask( in SetArgs() local
183 if (value_sp) { in SetArgs()
187 m_values.push_back(value_sp); in SetArgs()
189 m_values.insert(m_values.begin() + idx, value_sp); in SetArgs()
261 lldb::OptionValueSP value_sp(CreateValueFromCStringForTypeMask( in SetArgs() local
263 if (value_sp) { in SetArgs()
267 m_values[idx] = value_sp; in SetArgs()
269 m_values.push_back(value_sp); in SetArgs()
289 lldb::OptionValueSP value_sp(CreateValueFromCStringForTypeMask( in SetArgs() local
291 if (value_sp) { in SetArgs()
[all …]
H A DOptionValue.cpp508 lldb::OptionValueSP value_sp; in CreateValueFromCStringForTypeMask() local
511 value_sp = std::make_shared<OptionValueArch>(); in CreateValueFromCStringForTypeMask()
514 value_sp = std::make_shared<OptionValueBoolean>(false); in CreateValueFromCStringForTypeMask()
517 value_sp = std::make_shared<OptionValueChar>('\0'); in CreateValueFromCStringForTypeMask()
520 value_sp = std::make_shared<OptionValueFileSpec>(); in CreateValueFromCStringForTypeMask()
532 value_sp = std::make_shared<OptionValueSInt64>(); in CreateValueFromCStringForTypeMask()
535 value_sp = std::make_shared<OptionValueString>(); in CreateValueFromCStringForTypeMask()
538 value_sp = std::make_shared<OptionValueUInt64>(); in CreateValueFromCStringForTypeMask()
541 value_sp = std::make_shared<OptionValueUUID>(); in CreateValueFromCStringForTypeMask()
545 if (value_sp) in CreateValueFromCStringForTypeMask()
[all …]
H A DOptionValueUInt64.cpp19 lldb::OptionValueSP value_sp(new OptionValueUInt64()); in Create() local
20 error = value_sp->SetValueFromString(value_str); in Create()
22 value_sp.reset(); in Create()
23 return value_sp; in Create()
H A DProperty.cpp228 bool is_global, const lldb::OptionValueSP &value_sp) in Property() argument
229 : m_name(name), m_description(desc), m_value_sp(value_sp), in Property()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp520 ValueSP value_sp; in GetValue() local
524 value_sp = GetIntegerValue(0); in GetValue()
534 value_sp = GetPointerValue(0); in GetValue()
537 if (value_sp) { in GetValue()
578 ValueSP value_sp(new Value); in NewScalarValue() local
579 value_sp->SetCompilerType(type); in NewScalarValue()
581 return value_sp; in NewScalarValue()
630 return value_sp; in GetIntegerValue()
662 return value_sp; in GetFloatValue()
674 value_sp->GetScalar() = raw_data; in GetPointerValue()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCoreMedia.cpp35 auto value_sp(valobj.GetSyntheticChildAtOffset(0, int64_ty, true)); in CMTimeSummaryProvider() local
39 if (!value_sp || !timescale_sp || !flags_sp) in CMTimeSummaryProvider()
42 auto value = value_sp->GetValueAsUnsigned(0); in CMTimeSummaryProvider()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxUnorderedMap.cpp86 ValueObjectSP value_sp = in GetChildAtIndex() local
90 if (!hash_sp || !value_sp) { in GetChildAtIndex()
131 value_sp = node_sp->GetChildMemberWithName(ConstString("__value_"), true); in GetChildAtIndex()
133 if (!value_sp || !hash_sp) in GetChildAtIndex()
137 {value_sp.get(), hash_sp->GetValueAsUnsigned(0)}); in GetChildAtIndex()
H A DLibStdcppTuple.cpp75 ValueObjectSP value_sp = in Update() local
77 if (value_sp) { in Update()
80 m_members.push_back(value_sp->Clone(ConstString(name.GetString())).get()); in Update()
H A DLibCxx.cpp409 auto value_sp = ptr_sp->Dereference(status); in GetChildAtIndex() local
413 return value_sp->Cast(value_type_sp); in GetChildAtIndex()
497 auto value_sp = m_value_ptr_sp->Dereference(status); in GetChildAtIndex() local
499 return value_sp; in GetChildAtIndex()
H A DLibCxxList.cpp237 ValueObjectSP value_sp = current.advance(advance); in GetItem() local
239 return value_sp; in GetItem()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp258 if (value_sp && value_sp->GetType() == OptionValue::eTypeRegex) { in ElideMixedSourceAndDisassemblyLine()
259 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()
773 lldb::OptionValueSP value_sp; in ReadDictionary() local
780 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
781 if (!value_sp) { in ReadDictionary()
789 if (!value_sp) { in ReadDictionary()
798 value_sp->SetValueFromString(value); in ReadDictionary()
872 if (!value_sp) { in TestEmulation()
878 SetDescription(value_sp->GetStringValue()); in TestEmulation()
880 value_sp = data_dictionary->GetValueForKey(triple_key); in TestEmulation()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp80 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONObject() local
81 dict_up->AddItem(key, value_sp); in ParseJSONObject()
89 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONArray() local
90 array_up->AddItem(value_sp); in ParseJSONArray()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp386 ValueObjectSP value_sp = frame->FindVariable(g_this); in GetStepThroughTrampolinePlan() local
389 FindLibCppStdFunctionCallableInfo(value_sp); in GetStepThroughTrampolinePlan()
392 value_sp->GetValueIsValid()) { in GetStepThroughTrampolinePlan()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegister.cpp258 OptionValueSP value_sp(OptionValueUInt64::Create(option_value, error)); in SetOptionValue() local
259 if (value_sp) in SetOptionValue()
260 set_indexes.AppendValue(value_sp); in SetOptionValue()
H A DCommandObjectSettings.cpp159 lldb::OptionValueSP value_sp(GetDebugger().GetPropertyValue( in HandleArgumentCompletion() local
161 if (!value_sp) in HandleArgumentCompletion()
163 value_sp->AutoComplete(m_interpreter, request); in HandleArgumentCompletion()

12