Lines Matching refs:ref
173 ObjPtr<mirror::Object> ref = entries[idx].Read(); in Dump() local
174 if (ref == nullptr) { in Dump()
177 if (runtime->IsClearedJniWeakGlobal(ref)) { in Dump()
181 if (ref->GetClass() == nullptr) { in Dump()
183 size_t size = ref->SizeOf(); in Dump()
184 os << StringPrintf(" %5d: %p (raw) (%zd bytes)\n", idx, ref.Ptr(), size); in Dump()
188 std::string className(ref->PrettyTypeOf()); in Dump()
191 size_t element_count = GetElementCount(ref); in Dump()
194 } else if (ref->GetClass()->IsStringClass()) { in Dump()
195 ObjPtr<mirror::String> s = ref->AsString(); in Dump()
202 } else if (ref->IsReferenceInstance()) { in Dump()
203 ObjPtr<mirror::Object> referent = ref->AsReference()->GetReferent(); in Dump()
210 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n"; in Dump()
249 print_stack(ref, "Allocated at:"); in Dump()
252 if (ref->IsReferenceInstance()) { in Dump()
253 ObjPtr<mirror::Object> referent = ref->AsReference()->GetReferent(); in Dump()
280 SummaryElement(SummaryElement&& ref) noexcept { in Dump() argument
281 root = ref.root; in Dump()
282 equiv = ref.equiv; in Dump()
283 identical = ref.identical; in Dump()