Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp124 ValueObjectSP ptr_sp( in LibcxxSmartPointerSummaryProvider() local
131 if (!ptr_sp) in LibcxxSmartPointerSummaryProvider()
134 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxSmartPointerSummaryProvider()
168 ValueObjectSP ptr_sp( in LibcxxUniquePointerSummaryProvider() local
170 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
173 ptr_sp = GetValueOfLibCXXCompressedPair(*ptr_sp); in LibcxxUniquePointerSummaryProvider()
174 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
177 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxUniquePointerSummaryProvider()
584 if (auto ptr_sp = in GetChildAtIndex() local
689 ValueObjectSP ptr_sp( in Update() local
[all …]
H A DCoroutines.cpp27 ValueObjectSP ptr_sp(valobj_sp->GetChildAtIndex(0, true)); in GetCoroFramePtrFromHandle() local
28 if (!ptr_sp) in GetCoroFramePtrFromHandle()
30 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
34 lldb::addr_t frame_ptr_addr = ptr_sp->GetPointerValue(&addr_type); in GetCoroFramePtrFromHandle()
H A 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()