Lines Matching refs:os

1142 void Heap::DumpGcPerformanceInfo(std::ostream& os) {  in DumpGcPerformanceInfo()  argument
1144 os << "Dumping cumulative Gc timings\n"; in DumpGcPerformanceInfo()
1151 collector->DumpPerformanceInfo(os); in DumpGcPerformanceInfo()
1156 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n"; in DumpGcPerformanceInfo()
1157 os << "Mean GC size throughput: " in DumpGcPerformanceInfo()
1161 os << "Mean GC object throughput: " in DumpGcPerformanceInfo()
1165 os << "Total number of allocations " << total_objects_allocated << "\n"; in DumpGcPerformanceInfo()
1166 os << "Total bytes allocated " << PrettySize(GetBytesAllocatedEver()) << "\n"; in DumpGcPerformanceInfo()
1167 os << "Total bytes freed " << PrettySize(GetBytesFreedEver()) << "\n"; in DumpGcPerformanceInfo()
1168 os << "Free memory " << PrettySize(GetFreeMemory()) << "\n"; in DumpGcPerformanceInfo()
1169 os << "Free memory until GC " << PrettySize(GetFreeMemoryUntilGC()) << "\n"; in DumpGcPerformanceInfo()
1170 os << "Free memory until OOME " << PrettySize(GetFreeMemoryUntilOOME()) << "\n"; in DumpGcPerformanceInfo()
1171 os << "Total memory " << PrettySize(GetTotalMemory()) << "\n"; in DumpGcPerformanceInfo()
1172 os << "Max memory " << PrettySize(GetMaxMemory()) << "\n"; in DumpGcPerformanceInfo()
1174 os << "Zygote space size " << PrettySize(zygote_space_->Size()) << "\n"; in DumpGcPerformanceInfo()
1176 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n"; in DumpGcPerformanceInfo()
1177 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n"; in DumpGcPerformanceInfo()
1178 os << "Total GC count: " << GetGcCount() << "\n"; in DumpGcPerformanceInfo()
1179 os << "Total GC time: " << PrettyDuration(GetGcTime()) << "\n"; in DumpGcPerformanceInfo()
1180 os << "Total blocking GC count: " << GetBlockingGcCount() << "\n"; in DumpGcPerformanceInfo()
1181 os << "Total blocking GC time: " << PrettyDuration(GetBlockingGcTime()) << "\n"; in DumpGcPerformanceInfo()
1186 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1187 gc_count_rate_histogram_.DumpBins(os); in DumpGcPerformanceInfo()
1188 os << "\n"; in DumpGcPerformanceInfo()
1191 os << "Histogram of blocking GC count per " in DumpGcPerformanceInfo()
1193 blocking_gc_count_rate_histogram_.DumpBins(os); in DumpGcPerformanceInfo()
1194 os << "\n"; in DumpGcPerformanceInfo()
1199 rosalloc_space_->DumpStats(os); in DumpGcPerformanceInfo()
1202 os << "Native bytes total: " << GetNativeBytes() in DumpGcPerformanceInfo()
1205 os << "Total native bytes at last GC: " in DumpGcPerformanceInfo()
1208 BaseMutex::DumpAll(os); in DumpGcPerformanceInfo()
1264 void Heap::DumpGcCountRateHistogram(std::ostream& os) const { in DumpGcCountRateHistogram()
1267 gc_count_rate_histogram_.DumpBins(os); in DumpGcCountRateHistogram()
1271 void Heap::DumpBlockingGcCountRateHistogram(std::ostream& os) const { in DumpBlockingGcCountRateHistogram()
1274 blocking_gc_count_rate_histogram_.DumpBins(os); in DumpBlockingGcCountRateHistogram()
3467 void Heap::DumpForSigQuit(std::ostream& os) { in DumpForSigQuit() argument
3468 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" in DumpForSigQuit()
3470 DumpGcPerformanceInfo(os); in DumpForSigQuit()