Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp251 ValueObjectSP pointee_sp = valobj.Dereference(error); in LibStdcppStringSummaryProvider() local
252 if (pointee_sp && error.Success()) in LibStdcppStringSummaryProvider()
253 addr_of_string = pointee_sp->GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppStringSummaryProvider()
459 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibStdcppSmartPointerSummaryProvider() local
460 if (pointee_sp && error.Success()) { in LibStdcppSmartPointerSummaryProvider()
461 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/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp684 ValueObjectSP pointee_sp = Dereference(error); in GetPointeeData() local
685 if (error.Fail() || pointee_sp.get() == nullptr) in GetPointeeData()
687 return pointee_sp->GetData(data, error); in GetPointeeData()