Lines Matching refs:ValueObjectMemory
31 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create()
36 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, type_sp)) in Create()
40 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create()
45 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, in Create()
50 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() function in ValueObjectMemory
78 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() function in ValueObjectMemory
109 ValueObjectMemory::~ValueObjectMemory() = default;
111 CompilerType ValueObjectMemory::GetCompilerTypeImpl() { in GetCompilerTypeImpl()
117 ConstString ValueObjectMemory::GetTypeName() { in GetTypeName()
123 ConstString ValueObjectMemory::GetDisplayTypeName() { in GetDisplayTypeName()
129 size_t ValueObjectMemory::CalculateNumChildren(uint32_t max) { in CalculateNumChildren()
142 llvm::Optional<uint64_t> ValueObjectMemory::GetByteSize() { in GetByteSize()
149 lldb::ValueType ValueObjectMemory::GetValueType() const { in GetValueType()
154 bool ValueObjectMemory::UpdateValue() { in UpdateValue()
226 bool ValueObjectMemory::IsInScope() { in IsInScope()
232 lldb::ModuleSP ValueObjectMemory::GetModule() { return m_address.GetModule(); } in GetModule()