Searched refs:m_value (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeValue.h21 ThreadSafeValue() : m_value(), m_mutex() {}
23 ThreadSafeValue(const T &value) : m_value(value), m_mutex() {}
31 value = m_value;
38 const T &GetValueNoLock() const { return m_value; }
42 m_value = value;
47 void SetValueNoLock(const T &value) { m_value = value; }
52 T m_value; member in class:lldb_private::ThreadSafeValue
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DPredicate.h47 Predicate() : m_value(), m_mutex(), m_condition() {}
57 : m_value(initial_value), m_mutex(), m_condition() {}
66 /// Copies the current \a m_value in a thread safe manor and returns
73 T value = m_value;
79 /// Set the contained \a m_value to \a new_value in a thread safe
96 const T old_value = m_value;
97 m_value = value;
102 /// Wait for Cond(m_value) to be true.
104 /// Waits in a thread safe way for Cond(m_value) to be true. If Cond(m_value)
[all...]
H A DStructuredData.h288 : Object(lldb::eStructuredDataTypeInteger), m_value(i) {}
292 void SetValue(uint64_t value) { m_value = value; }
294 uint64_t GetValue() { return m_value; }
299 uint64_t m_value; member in class:Integer
305 : Object(lldb::eStructuredDataTypeFloat), m_value(d) {}
309 void SetValue(double value) { m_value = value; }
311 double GetValue() { return m_value; }
316 double m_value; member in class:Float
322 : Object(lldb::eStructuredDataTypeBoolean), m_value(b) {}
326 void SetValue(bool value) { m_value
333 bool m_value; member in class:Boolean
349 std::string m_value; member in class:String
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp36 m_value.SetCompilerType(cast_type);
52 return m_value.GetValueByteSize(nullptr, &exe_ctx);
65 Value old_value(m_value);
67 m_value = m_parent->GetValue();
69 m_value.SetCompilerType(compiler_type);
75 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() ||
76 m_value.GetScalar() != old_value.GetScalar());
79 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
H A DValueObjectMemory.cpp60 m_value.SetContext(Value::eContextTypeLLDBType, m_type_sp.get());
64 m_value.SetValueType(Value::eValueTypeLoadAddress);
65 m_value.GetScalar() = load_address;
69 m_value.SetValueType(Value::eValueTypeFileAddress);
70 m_value.GetScalar() = file_address;
72 m_value.GetScalar() = m_address.GetOffset();
73 m_value.SetValueType(Value::eValueTypeScalar);
92 m_value.SetCompilerType(m_compiler_type);
95 m_value.SetValueType(Value::eValueTypeLoadAddress);
96 m_value
[all...]
H A DValueObjectChild.cpp116 m_value.SetCompilerType(GetCompilerType());
120 m_value.GetScalar() = parent->GetValue().GetScalar();
122 m_value.SetValueType(value_type);
131 m_value.GetScalar() = addr;
138 m_value.GetScalar() += m_byte_offset;
145 m_value.SetValueType(Value::eValueTypeLoadAddress);
147 m_value.SetValueType(Value::eValueTypeFileAddress);
150 m_value.SetValueType(is_instance_ptr_base
155 m_value.SetValueType(Value::eValueTypeHostAddress);
159 m_value
[all...]
H A DValueObjectConstResult.cpp77 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
78 m_value.SetValueType(Value::eValueTypeHostAddress);
79 m_value.SetCompilerType(compiler_type);
120 m_value.GetScalar() = (uintptr_t)data_sp->GetBytes();
121 m_value.SetValueType(Value::eValueTypeHostAddress);
122 m_value.SetCompilerType(compiler_type);
148 m_value.GetScalar() = address;
150 m_value.GetScalar().GetData(m_data, addr_byte_size);
151 // m_value.SetValueType(Value::eValueTypeHostAddress);
154 m_value
[all...]
H A DValue.cpp42 : m_value(), m_vector(), m_compiler_type(), m_context(nullptr),
47 : m_value(scalar), m_vector(), m_compiler_type(), m_context(nullptr),
52 : m_value(), m_vector(), m_compiler_type(), m_context(nullptr),
59 : m_value(v.m_value), m_vector(v.m_vector),
64 (uintptr_t)v.m_value.ULongLong(LLDB_INVALID_ADDRESS);
70 m_value = (uintptr_t)m_data_buffer.GetBytes();
76 m_value = rhs.m_value;
83 (uintptr_t)rhs.m_value
[all...]
H A DValueObjectVariable.cpp136 m_value.SetContext(Value::eContextTypeVariable, variable);
159 Value old_value(m_value);
161 nullptr, m_value, &m_error)) {
162 m_resolved_value = m_value;
163 m_value.SetContext(Value::eContextTypeVariable, variable);
167 m_value.SetCompilerType(compiler_type);
169 Value::ValueType value_type = m_value.GetValueType();
171 // The size of the buffer within m_value can be less than the size
175 // In this case, grow m_value to the expected size. An alternative way to
181 // FIXME: When we grow m_value, w
[all...]
H A DValueObjectDynamicValue.cpp47 return m_value.GetCompilerType();
105 return m_value.GetValueByteSize(nullptr, &exe_ctx);
201 m_value = m_parent->GetValue();
202 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
206 Value old_value(m_value);
233 m_value.GetScalar() = load_address;
240 m_value.SetCompilerType(m_dynamic_type_info.GetCompilerType());
242 m_value.SetValueType(value_type);
249 // The variable value is in the Scalar value inside the m_value. We can
251 m_error = m_value
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupBoolean.cpp21 : m_value(default_value, default_value) {
45 m_value.SetCurrentValue(!m_value.GetDefaultValue());
46 m_value.SetOptionWasSet();
48 error = m_value.SetValueFromString(option_value);
55 m_value.Clear();
H A DOptionGroupString.cpp22 : m_value(default_value, default_value) {
40 Status error(m_value.SetValueFromString(option_arg));
46 m_value.Clear();
H A DOptionGroupUInt64.cpp22 : m_value(default_value, default_value) {
40 Status error(m_value.SetValueFromString(option_arg));
46 m_value.Clear();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h49 const ValueType &Value() const { return m_value; }
50 ValueType &ValueRef() { return m_value; }
51 void SetValue(const ValueType &val) { m_value = val; }
62 bool Boolean() const { return m_value.value.uval != 0; }
63 uint64_t Unsigned() const { return m_value.value.uval; }
64 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }
65 int64_t Signed() const { return m_value.value.sval; }
66 void SetSigned(int64_t sval) { m_value.value.sval = sval; }
82 // Compile unit where m_value was located.
83 // It may be different from compile unit where m_value refer
86 ValueType m_value; // Contains all data for the form member in class:DWARFFormValue
[all...]
H A DDWARFFormValue.cpp27 m_value = ValueTypeTag();
37 m_value.data = nullptr;
46 m_value.value.uval =
50 m_value.value.uval = data.GetU8(offset_ptr);
54 m_value.value.uval = data.GetU16(offset_ptr);
58 m_value.value.uval = data.GetU32(offset_ptr);
62 m_value.value.uval = 16;
67 m_value.value.uval = data.GetULEB128(offset_ptr);
71 m_value.value.cstr = data.GetCStr(offset_ptr);
74 m_value
[all...]
H A DDWARFAttribute.h23 : m_attr(attr), m_form(form), m_value(value) {}
35 val = m_value;
47 DWARFFormValue::ValueType m_value; member in class:DWARFAttribute
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupBoolean.h40 OptionValueBoolean &GetOptionValue() { return m_value; }
42 const OptionValueBoolean &GetOptionValue() const { return m_value; }
45 OptionValueBoolean m_value; member in class:lldb_private::OptionGroupBoolean
H A DOptionGroupString.h37 OptionValueString &GetOptionValue() { return m_value; }
39 const OptionValueString &GetOptionValue() const { return m_value; }
42 OptionValueString m_value; member in class:lldb_private::OptionGroupString
H A DOptionGroupUInt64.h38 OptionValueUInt64 &GetOptionValue() { return m_value; }
40 const OptionValueUInt64 &GetOptionValue() const { return m_value; }
43 OptionValueUInt64 m_value; member in class:lldb_private::OptionGroupUInt64
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h208 FAValue() : m_type(unspecified), m_value() {}
220 m_value.ra_search_offset = offset;
229 m_value.reg.reg_num = reg_num;
230 m_value.reg.offset = offset;
239 m_value.reg.reg_num = reg_num;
246 m_value.expr.opcodes = opcodes;
247 m_value.expr.length = len;
252 return m_value.reg.reg_num;
261 return m_value.reg.offset;
263 return m_value
320 } m_value; member in class:lldb_private::UnwindPlan::Row::FAValue
[all...]
/freebsd-13-stable/contrib/atf/atf-c/detail/
H A Dmap.c42 void *m_value; member in struct:map_entry
59 me->m_value = value;
88 return me->m_value;
132 return me->m_value;
210 free(me->m_value);
368 free(me->m_value);
371 me->m_value = value;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp172 return m_value.ra_search_offset == rhs.m_value.ra_search_offset;
175 return m_value.reg.offset == rhs.m_value.reg.offset;
178 return m_value.reg.reg_num == rhs.m_value.reg.reg_num;
181 if (m_value.expr.length == rhs.m_value.expr.length)
182 return !memcmp(m_value.expr.opcodes, rhs.m_value
[all...]
/freebsd-13-stable/contrib/elftoolchain/libelf/
H A Dgelf_move.c84 dst->m_value = move32->m_value;
146 move32->m_value = gm->m_value;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp33 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value),
108 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
126 process_sp->GetBreakpointSiteList().FindByID(m_value));
141 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
153 __FUNCTION__, m_value);
168 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
189 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
236 m_value);
240 m_value, m_address);
281 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
[all...]
/freebsd-13-stable/contrib/kyua/utils/
H A Dauto_array_test.cpp51 int m_value; member in class:__anon988::test_array
294 t[i].m_value = i * 2;
297 ATF_REQUIRE_EQ(t[i].m_value, i * 2);

Completed in 229 milliseconds

12