Lines Matching refs:fno
77 int __ghs_hostio_write (int fno, const void *buf, int size) in __ghs_hostio_write() argument
79 if (fno == 1 || fno == 2) { in __ghs_hostio_write()
84 return __ghs_syscall(SYSCALL_WRITE, fno, buf, size); in __ghs_hostio_write()
91 int __ghs_hostio_write (int fno, const void *buf, int size)
94 return __ghs_syscall(SYSCALL_WRITE, fno, buf, size);
111 int __ghs_hostio_read (int fno, void *buf, int size) in __ghs_hostio_read() argument
114 return __ghs_syscall(SYSCALL_READ, fno, buf, size); in __ghs_hostio_read()
203 int __ghs_hostio_close (int fno) in __ghs_hostio_close() argument
206 return __ghs_syscall(SYSCALL_CLOSE, fno); in __ghs_hostio_close()
224 off_t __ghs_hostio_lseek (int fno, off_t offset, int end) in __ghs_hostio_lseek() argument
227 return __ghs_syscall(SYSCALL_LSEEK, fno, (long)offset, end); in __ghs_hostio_lseek()
257 int __ghs_hostio_fcntl (int fno, int cmd, int arg) in __ghs_hostio_fcntl() argument
260 return __ghs_syscall(SYSCALL_FCNTL, fno, cmd, arg); in __ghs_hostio_fcntl()