Lines Matching defs:need
468 * Each of the N workers should have requests that need to
822 * Need our own seek pointer.
829 * Need the pid of the next worker in the loop...
939 ssize_t got, need = count;
941 while ((got = read(fd, buf, need)) > 0 && (need -= got) > 0)
943 return (got < 0 ? got : count - need);
953 ssize_t got, need = count;
955 while ((got = write(fd, buf, need)) > 0 && (need -= got) > 0)
957 return (got < 0 ? got : count - need);