Lines Matching refs:starttime
118 def _get_total_guest_cpu_graph(self, report, starttime): argument
133 xaxis.append(record._timestamp - starttime)
150 def _get_split_guest_cpu_graphs(self, report, starttime): argument
172 threads[record._tid]["xaxis"].append(record._timestamp - starttime)
194 def _get_migration_iters_graph(self, report, starttime): argument
199 xaxis.append(progress._now - starttime)
215 def _get_qemu_cpu_graph(self, report, starttime): argument
247 xaxis.append(record._timestamp - starttime)
265 def _get_vcpu_cpu_graphs(self, report, starttime): argument
303 threads[record._tid]["xaxis"].append(record._timestamp - starttime)
328 starttime = self._find_start_time(report)
330 graphs.append(self._get_total_guest_cpu_graph(report, starttime))
332 graphs.extend(self._get_split_guest_cpu_graphs(report, starttime))
334 graphs.append(self._get_qemu_cpu_graph(report, starttime))
336 graphs.extend(self._get_vcpu_cpu_graphs(report, starttime))
338 graphs.append(self._get_migration_iters_graph(report, starttime))
341 def _generate_annotation(self, starttime, progress): argument
344 "x": progress._now - starttime,
349 starttime = self._find_start_time(report)
356 annotations[progress._status] = self._generate_annotation(starttime, progress)