Home | History | Annotate | Download | only in io

Lines Matching refs:total

68     long total = 0;
75 total += r;
77 return total;
94 long total = 0;
98 total += to.write(buf);
102 return total;
731 int total = 0;
732 while (total < len) {
733 int result = in.read(b, off + total, len - total);
737 total += result;
739 return total;