Home | History | Annotate | Download | only in lpd

Lines Matching defs:amt

216 	int i, j, amt;
225 amt = BUFSIZ;
227 if (i + amt > size)
228 amt = size - i;
230 j = read(STDOUT_FILENO, cp, amt);
233 amt -= j;
235 } while (amt > 0);
236 amt = BUFSIZ;
237 if (i + amt > size)
238 amt = size - i;
239 if (write(fd, buf, amt) != amt) {