Lines Matching refs:ptr_sp
132 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in LibcxxSmartPointerSummaryProvider() local
138 if (!ptr_sp) in LibcxxSmartPointerSummaryProvider()
141 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxSmartPointerSummaryProvider()
147 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxSmartPointerSummaryProvider()
157 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0)); in LibcxxSmartPointerSummaryProvider()
175 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in LibcxxUniquePointerSummaryProvider() local
176 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
179 ptr_sp = GetFirstValueOfLibCXXCompressedPair(*ptr_sp); in LibcxxUniquePointerSummaryProvider()
180 if (!ptr_sp) in LibcxxUniquePointerSummaryProvider()
183 if (ptr_sp->GetValueAsUnsigned(0) == 0) { in LibcxxUniquePointerSummaryProvider()
189 ValueObjectSP pointee_sp = ptr_sp->Dereference(error); in LibcxxUniquePointerSummaryProvider()
199 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0)); in LibcxxUniquePointerSummaryProvider()
587 if (auto ptr_sp = valobj_sp->GetChildMemberWithName("__ptr_")) { in GetChildAtIndex() local
592 ValueObjectSP cast_ptr_sp = ptr_sp->Cast(value_type_sp); in GetChildAtIndex()
697 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in Update() local
698 if (!ptr_sp) in Update()
703 ValueObjectSP value_pointer_sp = GetFirstValueOfLibCXXCompressedPair(*ptr_sp); in Update()
707 ValueObjectSP deleter_sp = GetSecondValueOfLibCXXCompressedPair(*ptr_sp); in Update()
1089 ValueObjectSP ptr_sp = valobj.GetChildMemberWithName("__d_"); in LibcxxChronoSysSecondsSummaryProvider() local
1090 if (!ptr_sp) in LibcxxChronoSysSecondsSummaryProvider()
1092 ptr_sp = ptr_sp->GetChildMemberWithName("__rep_"); in LibcxxChronoSysSecondsSummaryProvider()
1093 if (!ptr_sp) in LibcxxChronoSysSecondsSummaryProvider()
1106 const std::time_t seconds = ptr_sp->GetValueAsSigned(0); in LibcxxChronoSysSecondsSummaryProvider()
1124 ValueObjectSP ptr_sp = valobj.GetChildMemberWithName("__d_"); in LibcxxChronoSysDaysSummaryProvider() local
1125 if (!ptr_sp) in LibcxxChronoSysDaysSummaryProvider()
1127 ptr_sp = ptr_sp->GetChildMemberWithName("__rep_"); in LibcxxChronoSysDaysSummaryProvider()
1128 if (!ptr_sp) in LibcxxChronoSysDaysSummaryProvider()
1138 const int days = ptr_sp->GetValueAsSigned(0); in LibcxxChronoSysDaysSummaryProvider()
1165 ValueObjectSP ptr_sp = valobj.GetChildMemberWithName("__m_"); in LibcxxChronoMonthSummaryProvider() local
1166 if (!ptr_sp) in LibcxxChronoMonthSummaryProvider()
1169 const unsigned month = ptr_sp->GetValueAsUnsigned(0); in LibcxxChronoMonthSummaryProvider()
1186 ValueObjectSP ptr_sp = valobj.GetChildMemberWithName("__wd_"); in LibcxxChronoWeekdaySummaryProvider() local
1187 if (!ptr_sp) in LibcxxChronoWeekdaySummaryProvider()
1190 const unsigned weekday = ptr_sp->GetValueAsUnsigned(0); in LibcxxChronoWeekdaySummaryProvider()
1201 ValueObjectSP ptr_sp = valobj.GetChildMemberWithName("__y_"); in LibcxxChronoYearMonthDaySummaryProvider() local
1202 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1204 ptr_sp = ptr_sp->GetChildMemberWithName("__y_"); in LibcxxChronoYearMonthDaySummaryProvider()
1205 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1207 int year = ptr_sp->GetValueAsSigned(0); in LibcxxChronoYearMonthDaySummaryProvider()
1209 ptr_sp = valobj.GetChildMemberWithName("__m_"); in LibcxxChronoYearMonthDaySummaryProvider()
1210 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1212 ptr_sp = ptr_sp->GetChildMemberWithName("__m_"); in LibcxxChronoYearMonthDaySummaryProvider()
1213 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1215 const unsigned month = ptr_sp->GetValueAsUnsigned(0); in LibcxxChronoYearMonthDaySummaryProvider()
1217 ptr_sp = valobj.GetChildMemberWithName("__d_"); in LibcxxChronoYearMonthDaySummaryProvider()
1218 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1220 ptr_sp = ptr_sp->GetChildMemberWithName("__d_"); in LibcxxChronoYearMonthDaySummaryProvider()
1221 if (!ptr_sp) in LibcxxChronoYearMonthDaySummaryProvider()
1223 const unsigned day = ptr_sp->GetValueAsUnsigned(0); in LibcxxChronoYearMonthDaySummaryProvider()