Home
last modified time | relevance | path

Searched refs:m_frozen_sp (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/llvm/lldb/include/lldb/Expression/
DExpressionVariable.h36 std::optional<uint64_t> GetByteSize() { return m_frozen_sp->GetByteSize(); } in GetByteSize()
38 ConstString GetName() { return m_frozen_sp->GetName(); } in GetName()
40 lldb::ValueObjectSP GetValueObject() { return m_frozen_sp; } in GetValueObject()
44 void ValueUpdated() { m_frozen_sp->ValueUpdated(); } in ValueUpdated()
47 return m_frozen_sp->GetValue().GetRegisterInfo(); in GetRegisterInfo()
51 return m_frozen_sp->GetValue().SetContext( in SetRegisterInfo()
55 CompilerType GetCompilerType() { return m_frozen_sp->GetCompilerType(); } in GetCompilerType()
58 m_frozen_sp->GetValue().SetCompilerType(compiler_type); in SetCompilerType()
61 void SetName(ConstString name) { m_frozen_sp->SetName(name); } in SetName()
74 if (m_frozen_sp.get() == nullptr)
[all …]
/openbsd/src/gnu/llvm/lldb/source/Expression/
DExpressionVariable.cpp21 std::optional<uint64_t> byte_size = m_frozen_sp->GetByteSize(); in GetValueBytes()
23 if (m_frozen_sp->GetDataExtractor().GetByteSize() < *byte_size) { in GetValueBytes()
24 m_frozen_sp->GetValue().ResizeData(*byte_size); in GetValueBytes()
25 m_frozen_sp->GetValue().GetData(m_frozen_sp->GetDataExtractor()); in GetValueBytes()
28 m_frozen_sp->GetDataExtractor().GetDataStart()); in GetValueBytes()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionVariable.cpp29 m_frozen_sp = in ClangExpressionVariable()
39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name); in ClangExpressionVariable()
47 m_frozen_sp = valobj_sp; in ClangExpressionVariable()
57 m_frozen_sp = in ClangExpressionVariable()
64 TypeFromUser tfu(m_frozen_sp->GetCompilerType()); in GetTypeFromUser()
DClangExpressionDeclMap.cpp311 var->m_frozen_sp->SetHasCompleteType(); in AddPersistentVariable()
/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObject.cpp3147 persistent_var_sp->m_live_sp = persistent_var_sp->m_frozen_sp; in Persist()