Home
last modified time | relevance | path

Searched refs:firmware_time (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/analyze/
Danalyze-plot.c216 width = SCALE_X * (boot->firmware_time + boot->finish_time); in verb_plot()
220 if (boot->firmware_time > boot->loader_time) in verb_plot()
244 text_start = (boot->firmware_time + u->activating) * SCALE_X; in verb_plot()
316 svg("<g transform=\"translate(%.3f,100)\">\n", 20.0 + (SCALE_X * boot->firmware_time)); in verb_plot()
317 svg_graph_box(m, -(double) boot->firmware_time, boot->finish_time); in verb_plot()
319 if (boot->firmware_time > 0) { in verb_plot()
320 svg_bar("firmware", -(double) boot->firmware_time, -(double) boot->loader_time, y); in verb_plot()
321 svg_text(true, -(double) boot->firmware_time, y, "firmware"); in verb_plot()
Danalyze-time-data.c22 …wareTimestampMonotonic", "t", NULL, offsetof(BootTimes, firmware_time) … in acquire_boot_times()
85 times.firmware_time = times.loader_time = times.kernel_time = times.initrd_time = in acquire_boot_times()
165 …if (t->firmware_time > 0 && !strextend(&text, FORMAT_TIMESPAN(t->firmware_time - t->loader_time, U… in pretty_boot_time()
178 …if (!strextend(&text, "= ", FORMAT_TIMESPAN(t->firmware_time + t->finish_time, USEC_PER_MSEC), " … in pretty_boot_time()
Danalyze-time-data.h7 usec_t firmware_time; member