Home
last modified time | relevance | path

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

/external/blktrace/iowatcher/
Dblkparse.c1032 if (tf->io_plots == tf->io_plots_allocated) { in get_pid_map()
1033 tf->io_plots_allocated += GDD_PTR_ALLOC_STEP; in get_pid_map()
1034 tf->gdd_reads = realloc(tf->gdd_reads, tf->io_plots_allocated * sizeof(struct graph_dot_data *)); in get_pid_map()
1037 …tf->gdd_writes = realloc(tf->gdd_writes, tf->io_plots_allocated * sizeof(struct graph_dot_data *)); in get_pid_map()
1040 memset(tf->gdd_reads + tf->io_plots_allocated - GDD_PTR_ALLOC_STEP, in get_pid_map()
1042 memset(tf->gdd_writes + tf->io_plots_allocated - GDD_PTR_ALLOC_STEP, in get_pid_map()
Dblkparse.h98 int io_plots_allocated; member
Dmain.c294 tf->io_plots_allocated = alloc_ptrs; in setup_trace_file_graphs()