Home | History | Annotate | Download | only in xray

Lines Matching refs:frame

23   int frame;
28 /* Dumps the trace report for a given frame. */
31 int frame,
55 total = XRayFrameGetTotalTicks(capture, frame);
56 start = XRayFrameGetTraceStartIndex(capture, frame);
57 end = XRayFrameGetTraceEndIndex(capture, frame);
101 /* Dumps a frame report */
105 int frame = XRayFrameGetTail(capture);
113 "Frame# Total Ticks Capture size Annotations Label\n");
116 while (frame != head) {
117 uint64_t total_ticks = XRayFrameGetTotalTicks(capture, frame);
118 int capture_size = XRayFrameGetTraceCount(capture, frame);
119 int annotation_count = XRayFrameGetAnnotationCount(capture, frame);
120 bool valid = XRayFrameIsValid(capture, frame);
131 totals[counter].frame = frame;
135 frame = XRayFrameGetNext(capture, frame);
140 "XRay: %d frame(s) %d total capture(s)\n", counter, total_capture);
148 "Frame# Total Ticks Capture size Annotations Label\n");
153 int frame = totals[i].frame;
154 uint64_t total_ticks = XRayFrameGetTotalTicks(capture, frame);
155 int capture_size = XRayFrameGetTraceCount(capture, frame);
156 int annotation_count = XRayFrameGetAnnotationCount(capture, frame);
170 /* Dump a frame report followed by trace report(s) for each frame. */
176 int frame = XRayFrameGetTail(capture);
180 while (frame != head) {
184 XRayTraceReport(capture, f, frame, label, percent_cutoff, ticks_cutoff);
186 frame = XRayFrameGetNext(capture, frame);