Home
last modified time | relevance | path

Searched refs:pointee_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp247 ValueObjectSP pointee_sp = valobj.Dereference(error); in LibStdcppStringSummaryProvider() local
248 if (pointee_sp && error.Success()) in LibStdcppStringSummaryProvider()
249 addr_of_string = pointee_sp->GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppStringSummaryProvider()
452 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibStdcppSmartPointerSummaryProvider() local
453 if (pointee_sp && error.Success()) { in LibStdcppSmartPointerSummaryProvider()
454 if (pointee_sp->DumpPrintableRepresentation( in LibStdcppSmartPointerSummaryProvider()
H A DLibCxx.cpp147 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxSmartPointerSummaryProvider() local
148 if (pointee_sp && error.Success()) { in LibcxxSmartPointerSummaryProvider()
149 if (pointee_sp->DumpPrintableRepresentation( in LibcxxSmartPointerSummaryProvider()
189 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxUniquePointerSummaryProvider() local
190 if (pointee_sp && error.Success()) { in LibcxxUniquePointerSummaryProvider()
191 if (pointee_sp->DumpPrintableRepresentation( in LibcxxUniquePointerSummaryProvider()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp644 ValueObjectSP pointee_sp = Dereference(error); in GetPointeeData() local
645 if (error.Fail() || pointee_sp.get() == nullptr) in GetPointeeData()
647 return pointee_sp->GetData(data, error); in GetPointeeData()