Home
last modified time | relevance | path

Searched refs:GetValueAsCString (Results 1 – 10 of 10) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDValueObjectPrinter.cpp157 str = valobj.GetValueAsCString(); in GetDescriptionForDisplay()
370 valobj.GetValueAsCString(lldb::eFormatDefault, value); in GetValueSummaryError()
372 valobj.GetValueAsCString(format, value); in GetValueSummaryError()
374 const char *val_cstr = valobj.GetValueAsCString(); in GetValueSummaryError()
HDVectorType.cpp313 const char *child_value = child_sp->GetValueAsCString(); in VectorTypeSummaryProvider()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDWatchpoint.cpp290 if (auto *old_value_cstr = m_old_value_sp->GetValueAsCString()) { in DumpSnapshots()
315 if (auto *new_value_cstr = m_new_value_sp->GetValueAsCString()) in DumpSnapshots()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDBlockPointer.cpp190 qualified_child_representation_sp->GetValueAsCString(); in BlockPointerSummaryProvider()
HDCxxStringTypes.cpp82 valobj.GetValueAsCString(ElemTraits.second, value); in CharSummaryProvider()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDValueObject.h432 virtual const char *GetValueAsCString();
434 virtual bool GetValueAsCString(const lldb_private::TypeFormatImpl &format,
437 bool GetValueAsCString(lldb::Format format, std::string &destination);
/freebsd-14-stable/contrib/llvm-project/lldb/source/Core/
HDValueObject.cpp1034 bool ValueObject::GetValueAsCString(const lldb_private::TypeFormatImpl &format, in GetValueAsCString() function in ValueObject
1042 bool ValueObject::GetValueAsCString(lldb::Format format, in GetValueAsCString() function in ValueObject
1044 return GetValueAsCString(TypeFormatImpl_Format(format), destination); in GetValueAsCString()
1047 const char *ValueObject::GetValueAsCString() { in GetValueAsCString() function in ValueObject
1072 if (GetValueAsCString(*format_sp.get(), m_value_str)) { in GetValueAsCString()
1473 str = GetValueAsCString(); in DumpPrintableRepresentation()
1525 str = GetValueAsCString(); in DumpPrintableRepresentation()
2086 GetValueAsCString()); in GetExpressionPath()
HDIOHandlerCursesGUI.cpp5776 const char *value = valobj->GetValueAsCString(); in DisplayRowObject()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Expression/
HDUserExpression.cpp394 result_valobj_sp->GetValueAsCString()); in Evaluate()
/freebsd-14-stable/contrib/llvm-project/lldb/source/API/
HDSBValue.cpp359 return ConstString(value_sp->GetValueAsCString()).GetCString(); in GetValue()