Lines Matching refs:have
906 int rv, cur_buf, left, have, tpcnt; in child_copy() local
924 have = (left < Out.f_bsize) ? left : Out.f_bsize; in child_copy()
930 have = (tpcnt < have) ? tpcnt : have; in child_copy()
933 if ((rv = g_write(Out.f_dev, Out.f_des, c_p, have)) < in child_copy()
963 int rv, left, have, tpcnt, cur_buf; in parent_copy() local
986 have = (xfer_cnt < In.f_bsize) ? xfer_cnt : In.f_bsize; in parent_copy()
997 have = (tpcnt < have) ? tpcnt : have; in parent_copy()
1000 if ((rv = g_read(In.f_dev, In.f_des, c_p, have)) < 0) { in parent_copy()
1049 int rv, left, have, tpcnt = 1, xfer_cnt = Fs * BLKSIZ; in copy() local
1059 have = (xfer_cnt < In.f_bsize) ? xfer_cnt : In.f_bsize; in copy()
1067 have = (tpcnt < have) ? tpcnt : have; in copy()
1070 if ((rv = g_read(In.f_dev, In.f_des, c_p, have)) < 0) { in copy()
1090 have = (left < Out.f_bsize) ? left : Out.f_bsize; in copy()
1096 have = (tpcnt < have) ? tpcnt : have; in copy()
1099 if ((rv = g_write(Out.f_dev, Out.f_des, c_p, have)) < in copy()