Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Expression/
DExpressionVariable.h35 llvm::Optional<uint64_t> GetByteSize() { return m_frozen_sp->GetByteSize(); } in GetByteSize()
37 ConstString GetName() { return m_frozen_sp->GetName(); } in GetName()
39 lldb::ValueObjectSP GetValueObject() { return m_frozen_sp; } in GetValueObject()
43 void ValueUpdated() { m_frozen_sp->ValueUpdated(); } in ValueUpdated()
46 return m_frozen_sp->GetValue().GetRegisterInfo(); in GetRegisterInfo()
50 return m_frozen_sp->GetValue().SetContext( in SetRegisterInfo()
54 CompilerType GetCompilerType() { return m_frozen_sp->GetCompilerType(); } in GetCompilerType()
57 m_frozen_sp->GetValue().SetCompilerType(compiler_type); in SetCompilerType()
60 void SetName(ConstString name) { m_frozen_sp->SetName(name); } in SetName()
73 if (m_frozen_sp.get() == nullptr)
[all …]
/external/llvm-project/lldb/source/Expression/
DExpressionVariable.cpp19 llvm::Optional<uint64_t> byte_size = m_frozen_sp->GetByteSize(); in GetValueBytes()
21 if (m_frozen_sp->GetDataExtractor().GetByteSize() < *byte_size) { in GetValueBytes()
22 m_frozen_sp->GetValue().ResizeData(*byte_size); in GetValueBytes()
23 m_frozen_sp->GetValue().GetData(m_frozen_sp->GetDataExtractor()); in GetValueBytes()
26 m_frozen_sp->GetDataExtractor().GetDataStart()); in GetValueBytes()
/external/llvm-project/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.cpp291 var->m_frozen_sp->SetHasCompleteType(); in AddPersistentVariable()
/external/llvm-project/lldb/source/Core/
DValueObject.cpp3236 persistent_var_sp->m_live_sp = persistent_var_sp->m_frozen_sp; in Persist()