Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.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()
H A DVectorType.cpp313 const char *child_value = child_sp->GetValueAsCString(); in VectorTypeSummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.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/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DBlockPointer.cpp190 qualified_child_representation_sp->GetValueAsCString(); in BlockPointerSummaryProvider()
H A DCxxStringTypes.cpp82 valobj.GetValueAsCString(ElemTraits.second, value); in CharSummaryProvider()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h432 virtual const char *GetValueAsCString();
434 virtual bool GetValueAsCString(const lldb_private::TypeFormatImpl &format,
437 bool GetValueAsCString(lldb::Format format, std::string &destination);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.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()
H A DIOHandlerCursesGUI.cpp5776 const char *value = valobj->GetValueAsCString(); in DisplayRowObject()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp394 result_valobj_sp->GetValueAsCString()); in Evaluate()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp359 return ConstString(value_sp->GetValueAsCString()).GetCString(); in GetValue()