Home | History | Annotate | Download | only in libtos

Lines Matching defs:got

125 		int got;
128 got = cread(s->fd, s->inbuf, Z_BUFSIZE);
129 if (got <= 0) {
134 s->stream.avail_in = got;
307 int got;
308 got = read(s->fd, s->stream.next_out,
310 if (got == -1)
311 return (got);
312 s->stream.avail_out -= got;
318 int got;
320 got = read(fd, s->inbuf, Z_BUFSIZE);
321 if (got <= 0) {
328 s->stream.avail_in = got;