Lines Matching refs:summary

167     auto summary = proto->mutable_summary();  in mergeProfileDataIntoProto()  local
168 summary->set_total_frames(summary->total_frames() + data->totalFrameCount()); in mergeProfileDataIntoProto()
169 summary->set_janky_frames(summary->janky_frames() + data->jankFrameCount()); in mergeProfileDataIntoProto()
170 summary->set_missed_vsync_count(summary->missed_vsync_count() + in mergeProfileDataIntoProto()
172 summary->set_high_input_latency_count(summary->high_input_latency_count() + in mergeProfileDataIntoProto()
174 summary->set_slow_ui_thread_count(summary->slow_ui_thread_count() + in mergeProfileDataIntoProto()
176 summary->set_slow_bitmap_upload_count(summary->slow_bitmap_upload_count() + in mergeProfileDataIntoProto()
178 summary->set_slow_draw_count(summary->slow_draw_count() + data->jankTypeCount(kSlowRT)); in mergeProfileDataIntoProto()
179 summary->set_missed_deadline_count(summary->missed_deadline_count() in mergeProfileDataIntoProto()
216 int32_t pos = percentile * proto->summary().total_frames() / 100; in findPercentile()
217 int32_t remaining = proto->summary().total_frames() - pos; in findPercentile()
238 auto summary = proto->summary(); in dumpAsTextToFd() local
239 dprintf(fd, "\nTotal frames rendered: %d", summary.total_frames()); in dumpAsTextToFd()
240 dprintf(fd, "\nJanky frames: %d (%.2f%%)", summary.janky_frames(), in dumpAsTextToFd()
241 (float)summary.janky_frames() / (float)summary.total_frames() * 100.0f); in dumpAsTextToFd()
246 dprintf(fd, "\nNumber Missed Vsync: %d", summary.missed_vsync_count()); in dumpAsTextToFd()
247 dprintf(fd, "\nNumber High input latency: %d", summary.high_input_latency_count()); in dumpAsTextToFd()
248 dprintf(fd, "\nNumber Slow UI thread: %d", summary.slow_ui_thread_count()); in dumpAsTextToFd()
249 dprintf(fd, "\nNumber Slow bitmap uploads: %d", summary.slow_bitmap_upload_count()); in dumpAsTextToFd()
250 dprintf(fd, "\nNumber Slow issue draw commands: %d", summary.slow_draw_count()); in dumpAsTextToFd()
251 dprintf(fd, "\nNumber Frame deadline missed: %d", summary.missed_deadline_count()); in dumpAsTextToFd()