Lines Matching defs:offset
447 copy(int fdi, int fdo, size_t nbyte, off_t offset)
455 if (readx(fdi, buf, n, offset) != n)
459 offset = -1;
467 readx(int fd, void *buf, size_t nbyte, off_t offset)
471 if (offset != -1 && lseek(fd, offset, SEEK_SET) != offset)
496 seekx(int fd, off_t offset)
498 if (lseek(fd, offset, SEEK_SET) != offset)