Home
last modified time | relevance | path

Searched refs:GetValue (Results 1 – 25 of 87) sorted by relevance

1234

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp34 property.GetValue()->SetParent(shared_from_this()); in Initialize()
189 return setting->GetValue(); in GetPropertyValueAtIndex()
215 return property->GetValue()->GetAsArch(); in GetPropertyAtIndexAsOptionValueArch()
224 return property->GetValue()->GetAsLanguage(); in GetPropertyAtIndexAsOptionValueLanguage()
234 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs()
259 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs()
282 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean()
307 return property->GetValue()->GetAsDictionary(); in GetPropertyAtIndexAsOptionValueDictionary()
481 m_properties[i].GetValue()->Clear(); in Clear()
594 property->GetValue()->GetAsProperties(); in GetPropertyAtPath()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h116 return ((f != nullptr) ? f->GetValue() : fail_value);
139 return s->GetValue();
220 result = string_value->GetValue(); in GetItemAtIndexAsString()
239 result = ConstString(string_value->GetValue()); in GetItemAtIndexAsString()
294 uint64_t GetValue() { return m_value; } in GetValue() function
311 double GetValue() { return m_value; } in GetValue() function
328 bool GetValue() { return m_value; } in GetValue() function
344 llvm::StringRef GetValue() { return m_value; } in GetValue() function
396 result = result_ptr->GetValue(); in GetValueForKeyAsBoolean()
428 result = string_value->GetValue(); in GetValueForKeyAsString()
[all …]
H A DPredicate.h71 T GetValue() const { in GetValue() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp495 ->GetValue()); in FormatDescription()
619 ->GetValue()); in GenerateSummary()
671 ->GetValue(); in GenerateSummary()
676 ->GetValue(); in GenerateSummary()
689 ->GetValue(); in GenerateSummary()
736 ->GetValue(); in GetLocationDescription()
755 ->GetValue(); in GetLocationDescription()
759 ->GetValue(); in GetLocationDescription()
775 ->GetValue(); in GetLocationDescription()
781 ->GetValue(); in GetLocationDescription()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DExpressionVariable.cpp22 m_frozen_sp->GetValue().ResizeData(*byte_size); in GetValueBytes()
23 m_frozen_sp->GetValue().GetData(m_frozen_sp->GetDataExtractor()); in GetValueBytes()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionVariable.h46 return m_frozen_sp->GetValue().GetRegisterInfo(); in GetRegisterInfo()
50 return m_frozen_sp->GetValue().SetContext( in SetRegisterInfo()
57 m_frozen_sp->GetValue().SetCompilerType(compiler_type); in SetCompilerType()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectChild.cpp113 m_value.GetScalar() = parent->GetValue().GetScalar(); in UpdateValue()
114 m_value.SetValueType(parent->GetValue().GetValueType()); in UpdateValue()
202 Value &value = is_instance_ptr_base ? m_parent->GetValue() : m_value; in UpdateValue()
H A DValueObjectConstResultImpl.cpp135 m_address_of_backend->GetValue().SetValueType(Value::ValueType::Scalar); in AddressOf()
136 m_address_of_backend->GetValue().GetScalar() = m_live_address; in AddressOf()
H A DValueObjectCast.cpp67 m_value = m_parent->GetValue(); in UpdateValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1571 (PyObject *)generic->GetValue()); in GetRecognizedArguments()
1636 (PyObject *)generic->GetValue()); in OSPlugin_RegisterInfo()
1691 (PyObject *)generic->GetValue()); in OSPlugin_ThreadsInfo()
2107 generic->GetValue(), setting_name, target_sp); in GetDynamicSettings()
2260 old_callee = generic->GetValue(); in GetScriptedSummary()
2408 void *implementor = generic->GetValue(); in CalculateNumChildren()
2431 void *implementor = generic->GetValue(); in GetChildAtIndex()
2463 void *implementor = generic->GetValue(); in GetIndexOfChildWithName()
2488 void *implementor = generic->GetValue(); in UpdateSynthProviderInstance()
2511 void *implementor = generic->GetValue(); in MightHaveChildrenSynthProviderInstance()
[all …]
H A DScriptedProcessPythonInterface.cpp90 (PyObject *)m_object_instance_sp->GetValue()); in GetStatusFromMethod()
154 (PyObject *)m_object_instance_sp->GetValue()); in GetGenericInteger()
239 (PyObject *)m_object_instance_sp->GetValue()); in ReadMemoryAtAddress()
H A DPythonDataObjects.h79 Py_XINCREF(GetValue()); in StructuredPythonObject()
84 Py_XDECREF(GetValue()); in ~StructuredPythonObject()
88 bool IsValid() const override { return GetValue() && GetValue() != Py_None; } in IsValid()
509 bool GetValue() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp181 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataCount()
240 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
262 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
265 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
268 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
271 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
274 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
470 strm.Printf("%s", node->GetAsString()->GetValue().str().c_str()); in GetInfoItemByPathAsString()
474 strm.Printf("0x%" PRIx64, node->GetAsInteger()->GetValue()); in GetInfoItemByPathAsString()
478 strm.Printf("0x%f", node->GetAsFloat()->GetValue()); in GetInfoItemByPathAsString()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointHitCounter.h22 uint32_t GetValue() const { return m_hit_count; } in GetValue() function
H A DStoppointSite.h33 uint32_t GetHitCount() const { return m_hit_counter.GetValue(); } in GetHitCount()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h102 uint32_t GetValue() { return m_flags; } in GetValue() function
132 uint32_t GetOptions() { return m_flags.GetValue(); } in GetOptions()
H A DTypeSummary.h194 uint32_t GetValue() { return m_flags; } in GetValue() function
248 uint32_t GetOptions() { return m_flags.GetValue(); } in GetOptions()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp53 IRForTarget::FunctionValueCache::GetValue(llvm::Function *function) { in GetValue() function in IRForTarget::FunctionValueCache
520 m_entry_instruction_finder.GetValue(function))); in RewriteObjCConstString()
1561 value_maker.GetValue(function), constant_expr->getType(), in UnfoldConstant()
1563 entry_instruction_finder.GetValue(function))); in UnfoldConstant()
1582 ptr = value_maker.GetValue(function); in UnfoldConstant()
1587 operand = value_maker.GetValue(function); in UnfoldConstant()
1597 entry_instruction_finder.GetValue(function))); in UnfoldConstant()
1620 old_constant, value_maker.GetValue(inst->getParent()->getParent())); in UnfoldConstant()
1773 m_entry_instruction_finder.GetValue(function)); in ReplaceVariables()
1811 body_result_maker.GetValue(instruction->getParent()->getParent())); in ReplaceVariables()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp319 exp_property->GetValue()->GetAsProperties(); in GetOSPluginReportsAllThreads()
331 exp_property->GetValue()->GetAsProperties(); in SetOSPluginReportsAllThreads()
464 ->GetValue(); in Process()
1018 if (m_public_state.GetValue() == eStateExited) in GetExitStatus()
1042 if (m_private_state.GetValue() == eStateExited) { in SetExitStatus()
1067 switch (m_private_state.GetValue()) { in IsAlive()
1277 return m_public_state.GetValue(); in GetState()
3116 if (m_public_state.GetValue() == eStateRunning || in StopForDestroyOrDetach()
3117 m_private_state.GetValue() == eStateRunning) { in StopForDestroyOrDetach()
4691 if (m_private_state.GetValue() != eStateStopped) { in RunThreadPlan()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeValue.h25 T GetValue() const { in GetValue() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp181 ->GetValue()); in NotifyBreakpointHit()
258 PCs.push_back(PC->GetAsInteger()->GetValue()); in GetBacktracesFromExtendedStopInfo()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DProperty.h48 const lldb::OptionValueSP &GetValue() const { return m_value_sp; } in GetValue() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp127 if (m_hit_counter.GetValue() >= m_false_alarms) { in IncrementFalseAlarmsAndReviseHitCount()
131 m_false_alarms -= m_hit_counter.GetValue(); in IncrementFalseAlarmsAndReviseHitCount()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBValue.i102 GetValue ();
490 …value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value …
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h150 MVT GetValue() const { in GetValue() function

1234