Lines Matching refs:m_value
60 m_value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in ValueObjectMemory()
64 m_value.SetValueType(Value::ValueType::LoadAddress); in ValueObjectMemory()
65 m_value.GetScalar() = load_address; in ValueObjectMemory()
69 m_value.SetValueType(Value::ValueType::FileAddress); in ValueObjectMemory()
70 m_value.GetScalar() = file_address; in ValueObjectMemory()
72 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
73 m_value.SetValueType(Value::ValueType::Scalar); in ValueObjectMemory()
92 m_value.SetCompilerType(m_compiler_type); in ValueObjectMemory()
95 m_value.SetValueType(Value::ValueType::LoadAddress); in ValueObjectMemory()
96 m_value.GetScalar() = load_address; in ValueObjectMemory()
100 m_value.SetValueType(Value::ValueType::FileAddress); in ValueObjectMemory()
101 m_value.GetScalar() = file_address; in ValueObjectMemory()
103 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
104 m_value.SetValueType(Value::ValueType::Scalar); in ValueObjectMemory()
166 Value old_value(m_value); in UpdateValue()
168 Value::ValueType value_type = m_value.GetValueType(); in UpdateValue()
177 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
195 m_value.SetValueType(Value::ValueType::LoadAddress); in UpdateValue()
196 m_value.GetScalar() = load_addr; in UpdateValue()
205 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue()
209 Value value(m_value); in UpdateValue()