Lines Matching refs:fd
30 ssize_t _write_r_console(struct _reent *r, int fd, const void * data, size_t size) in _write_r_console() argument
33 if (fd == STDOUT_FILENO || fd == STDERR_FILENO) { in _write_r_console()
43 ssize_t _read_r_console(struct _reent *r, int fd, void * data, size_t size) in _read_r_console() argument
46 if (fd == STDIN_FILENO) { in _read_r_console()
64 static ssize_t _fstat_r_console(struct _reent *r, int fd, struct stat * st) in _fstat_r_console() argument
66 if (fd == STDOUT_FILENO || fd == STDERR_FILENO) { in _fstat_r_console()
81 ssize_t _read_r(struct _reent *r, int fd, void * dst, size_t size)
83 ssize_t _write_r(struct _reent *r, int fd, const void * data, size_t size)
85 int _fstat_r (struct _reent *r, int fd, struct stat *st)
100 int _close_r(struct _reent *r, int fd)
102 off_t _lseek_r(struct _reent *r, int fd, off_t size, int mode)
104 int _fcntl_r(struct _reent *r, int fd, int cmd, int arg)
114 int _isatty_r(struct _reent *r, int fd)
146 int fcntl(int fd, int cmd, ...) in fcntl() argument
153 return _fcntl_r(r, fd, cmd, arg); in fcntl()