Home
last modified time | relevance | path

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

/external/blktrace/iowatcher/
Dmain.c293 tf->gdd_reads = calloc(alloc_ptrs, sizeof(struct graph_dot_data *)); in setup_trace_file_graphs()
377 if (tf->gdd_reads[i]) { in pick_line_graph_color()
378 tf->line_color = tf->gdd_reads[i]->color; in pick_line_graph_color()
379 tf->reads_color = tf->gdd_reads[i]->color; in pick_line_graph_color()
618 if (tf->gdd_reads[i]) in alloc_plot_history()
619 ph->read_pid_history[i] = alloc_pid_plot_history(tf->gdd_reads[i]->color); in alloc_plot_history()
710 if (tf->gdd_reads[i]) in count_io_plot_types()
762 if (tf->gdd_reads[i]) { in plot_io()
763 svg_io_graph(plot, tf->gdd_reads[i]); in plot_io()
764 plot_io_legend(plot, tf->gdd_reads[i], prefix, " Reads"); in plot_io()
[all …]
Dblkparse.c1034 tf->gdd_reads = realloc(tf->gdd_reads, tf->io_plots_allocated * sizeof(struct graph_dot_data *)); in get_pid_map()
1035 if (!tf->gdd_reads) in get_pid_map()
1040 memset(tf->gdd_reads + tf->io_plots_allocated - GDD_PTR_ALLOC_STEP, in get_pid_map()
1078 if (!tf->gdd_reads[index]) in add_io()
1079 …tf->gdd_reads[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_of… in add_io()
1080 set_gdd_bit(tf->gdd_reads[index], offset, io->bytes, io->time); in add_io()
Dblkparse.h100 struct graph_dot_data **gdd_reads; member