Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp415 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibStdcppSmartPointerSummaryProvider() local
416 if (pointee_sp && error.Success()) { in LibStdcppSmartPointerSummaryProvider()
417 if (pointee_sp->DumpPrintableRepresentation( in LibStdcppSmartPointerSummaryProvider()
H A DLibCxx.cpp128 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxSmartPointerSummaryProvider() local
129 if (pointee_sp && error.Success()) { in LibcxxSmartPointerSummaryProvider()
130 if (pointee_sp->DumpPrintableRepresentation( in LibcxxSmartPointerSummaryProvider()
171 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxUniquePointerSummaryProvider() local
172 if (pointee_sp && error.Success()) { in LibcxxUniquePointerSummaryProvider()
173 if (pointee_sp->DumpPrintableRepresentation( in LibcxxUniquePointerSummaryProvider()
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp689 ValueObjectSP pointee_sp = Dereference(error); in GetPointeeData() local
690 if (error.Fail() || pointee_sp.get() == nullptr) in GetPointeeData()
692 return pointee_sp->GetData(data, error); in GetPointeeData()