Searched refs:deltaTotal (Results 1 – 2 of 2) sorted by relevance
| /openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | samples.py | 51 def __init__(self, time, avg10, avg60, avg300, deltaTotal): argument 56 self.deltaTotal = deltaTotal 59 def __init__(self, time, avg10, avg60, avg300, deltaTotal): argument 64 self.deltaTotal = deltaTotal 67 def __init__(self, time, avg10, avg60, avg300, deltaTotal): argument 72 self.deltaTotal = deltaTotal
|
| H A D | draw.py | 491 max_sample_total = max (trace.cpu_pressure, key = lambda s: s.deltaTotal) 493 …draw_legend_box(ctx, "delta total CPU Pressure (max %d)" % (max_sample_total.deltaTotal), CPU_PRES… 501 [(sample.time, sample.deltaTotal) for sample in trace.cpu_pressure], \ 525 max_sample_total = max (trace.io_pressure, key = lambda s: s.deltaTotal) 527 …draw_legend_box(ctx, "delta total I/O Pressure (max %d)" % (max_sample_total.deltaTotal), IO_PRESS… 535 [(sample.time, sample.deltaTotal) for sample in trace.io_pressure], \ 559 max_sample_total = max (trace.mem_pressure, key = lambda s: s.deltaTotal) 561 …draw_legend_box(ctx, "delta total MEM Pressure (max %d)" % (max_sample_total.deltaTotal), MEM_PRES… 569 [(sample.time, sample.deltaTotal) for sample in trace.mem_pressure], \
|