Home | History | Annotate | Download | only in util

Lines Matching refs:got

67 	int got, total = 0;
71 got = read(fd, buf, count);
72 if (got == -1) {
77 if (got == 0) {
83 buf += got;
84 total += got;
85 count -= got;
94 ssize_t got, got2;
167 got = full_read(fd, buf, bs);
169 if (fd == 0 && got == 0)
172 if (got == bs) {
182 got2 = write(ofd, buf, got);
183 if (got != got2) {
187 offset += got;