Lines Matching refs:total

471                          int64_t count, int64_t total, int cnt, bool Cflag)  in print_report()  argument
477 cvtstr((double)total, s1, sizeof(s1)); in print_report()
478 cvtstr(tdiv((double)total, *t), s2, sizeof(s2)); in print_report()
480 op, total, count, offset); in print_report()
485 total, cnt, ts, in print_report()
486 tdiv((double)total, *t), in print_report()
546 int64_t bytes, BdrvRequestFlags flags, int64_t *total) in do_pread() argument
558 *total = bytes; in do_pread()
563 int64_t bytes, BdrvRequestFlags flags, int64_t *total) in do_pwrite() argument
575 *total = bytes; in do_pwrite()
581 int64_t *total) in do_pwrite_zeroes() argument
589 *total = bytes; in do_pwrite_zeroes()
594 int64_t bytes, int64_t *total) in do_write_compressed() argument
606 *total = bytes; in do_write_compressed()
611 int64_t count, int64_t *total) in do_load_vmstate() argument
617 *total = blk_load_vmstate(blk, (uint8_t *)buf, offset, count); in do_load_vmstate()
618 if (*total < 0) { in do_load_vmstate()
619 return *total; in do_load_vmstate()
625 int64_t count, int64_t *total) in do_save_vmstate() argument
631 *total = blk_save_vmstate(blk, (uint8_t *)buf, offset, count); in do_save_vmstate()
632 if (*total < 0) { in do_save_vmstate()
633 return *total; in do_save_vmstate()
645 int64_t offset, BdrvRequestFlags flags, int *total) in do_aio_readv() argument
654 *total = qiov->size; in do_aio_readv()
659 int64_t offset, BdrvRequestFlags flags, int *total) in do_aio_writev() argument
668 *total = qiov->size; in do_aio_writev()
718 int64_t total = 0; in read_f() local
830 ret = do_load_vmstate(blk, buf, offset, count, &total); in read_f()
832 ret = do_pread(blk, buf, offset, count, flags, &total); in read_f()
866 print_report("read", &t2, offset, count, total, cnt, Cflag); in read_f()
913 int total = 0; in readv_f() local
968 ret = do_aio_readv(blk, &qiov, offset, flags, &total); in readv_f()
1000 print_report("read", &t2, offset, qiov.size, total, cnt, Cflag); in readv_f()
1059 int64_t total = 0; in write_f() local
1195 ret = do_save_vmstate(blk, buf, offset, count, &total); in write_f()
1197 ret = do_pwrite_zeroes(blk, offset, count, flags, &total); in write_f()
1199 ret = do_write_compressed(blk, buf, offset, count, &total); in write_f()
1201 ret = do_pwrite(blk, buf, offset, count, flags, &total); in write_f()
1219 print_report("wrote", &t2, offset, count, total, cnt, Cflag); in write_f()
1270 int total = 0; in writev_f() local
1321 ret = do_aio_writev(blk, &qiov, offset, flags, &total); in writev_f()
1338 print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag); in writev_f()
1924 int64_t *offset, int flags, int *total) in do_aio_zone_append() argument
1933 *total = qiov->size; in do_aio_zone_append()
1942 int total = 0; in zone_append_f() local
1969 ret = do_aio_zone_append(blk, &qiov, &offset, flags, &total); in zone_append_f()