Lines Matching refs:fd
45 read(int fd, void *buf, size_t count) in read() argument
47 (void) fd; in read()
54 write(int fd, const void *buf, size_t count) in write() argument
56 (void) fd; in write()
70 close(int fd) in close() argument
72 (void) fd; in close()
76 off_t lseek(int fd, off_t offset, int whence) in lseek() argument
78 (void) fd; in lseek()
84 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64() argument
86 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
97 fstat (int fd, struct stat *sbuf) in fstat() argument
99 (void) fd; in fstat()
105 isatty (int fd) in isatty() argument
107 (void) fd; in isatty()