Home
last modified time | relevance | path

Searched refs:ptr_sp (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DLibCxx.cpp109 ValueObjectSP ptr_sp( in LibcxxSmartPointerSummaryProvider() local
116 if (!ptr_sp) in LibcxxSmartPointerSummaryProvider()
119 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxSmartPointerSummaryProvider()
125 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxSmartPointerSummaryProvider()
135 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0)); in LibcxxSmartPointerSummaryProvider()
153 ValueObjectSP ptr_sp( in LibcxxUniquePointerSummaryProvider() local
155 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
158 ptr_sp = GetValueOfLibCXXCompressedPair(*ptr_sp); in LibcxxUniquePointerSummaryProvider()
159 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
162 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxUniquePointerSummaryProvider()
[all …]
DLibStdcpp.cpp397 ValueObjectSP ptr_sp( in LibStdcppSmartPointerSummaryProvider() local
399 if (!ptr_sp) in LibStdcppSmartPointerSummaryProvider()
408 if (ptr_sp->GetValueAsUnsigned(0) == 0 || in LibStdcppSmartPointerSummaryProvider()
415 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibStdcppSmartPointerSummaryProvider()
426 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0)); in LibStdcppSmartPointerSummaryProvider()