Lines Matching refs:ddir
126 ipo->ddir = DDIR_INVAL; in trace_add_open_close_event()
237 ipo->ddir = DDIR_WRITE; in store_ipo()
239 ipo->ddir = DDIR_READ; in store_ipo()
243 ipo->ddir, ipo->offset, in store_ipo()
294 ipo->ddir = DDIR_TRIM; in handle_trace_discard()
390 enum fio_ddir ddir; in depth_inc() local
392 ddir = t_get_ddir(t); in depth_inc()
393 if (ddir != DDIR_INVAL) in depth_inc()
394 depth[ddir]++; in depth_inc()
399 enum fio_ddir ddir; in depth_dec() local
401 ddir = t_get_ddir(t); in depth_dec()
402 if (ddir != DDIR_INVAL) in depth_dec()
403 depth[ddir]--; in depth_dec()
408 enum fio_ddir ddir = DDIR_INVAL; in depth_end() local
410 ddir = t_get_ddir(t); in depth_end()
411 if (ddir != DDIR_INVAL) { in depth_end()
412 depth[ddir] = max(depth[ddir], this_depth[ddir]); in depth_end()
413 this_depth[ddir] = 0; in depth_end()