Lines Matching refs:ref
128 // change during the sorting process. The classes are forwarded by ref->GetClass().
166 mirror::Object* ref = entries[idx].Read();
167 if (ref == nullptr) {
170 if (runtime->IsClearedJniWeakGlobal(ref)) {
174 if (ref->GetClass() == nullptr) {
176 size_t size = ref->SizeOf();
177 os << StringPrintf(" %5d: %p (raw) (%zd bytes)\n", idx, ref, size);
181 std::string className(PrettyTypeOf(ref));
184 size_t element_count = GetElementCount(ref);
187 } else if (ref->GetClass()->IsStringClass()) {
188 mirror::String* s = ref->AsString();
196 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n";