Lines Matching refs:os
112 static void DumpSummaryLine(std::ostream& os, mirror::Object* obj, size_t element_count, in DumpSummaryLine() argument
116 os << " NULL reference (count=" << equiv << ")\n"; in DumpSummaryLine()
120 os << " cleared jweak (count=" << equiv << ")\n"; in DumpSummaryLine()
139 os << " " << msg << "\n"; in DumpSummaryLine()
146 void ReferenceTable::Dump(std::ostream& os) { in Dump() argument
147 os << name_ << " reference table dump:\n"; in Dump()
148 Dump(os, entries_); in Dump()
151 void ReferenceTable::Dump(std::ostream& os, Table& entries) { in Dump() argument
153 os << " (empty)\n"; in Dump()
164 os << " Last " << (count - first) << " entries (of " << count << "):\n"; in Dump()
171 os << StringPrintf(" %5d: cleared jweak\n", idx); in Dump()
177 os << StringPrintf(" %5d: %p (raw) (%zd bytes)\n", idx, ref, size); in Dump()
196 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n"; in Dump()
220 os << " Summary:\n"; in Dump()
235 DumpSummaryLine(os, prev, element_count, identical, equiv); in Dump()
240 DumpSummaryLine(os, sorted_entries.back().Read<kWithoutReadBarrier>(), in Dump()