Home
last modified time | relevance | path

Searched refs:fildes (Results 1 – 3 of 3) sorted by relevance

/linux/tools/include/nolibc/sys/
H A Dstat.h22 * int fstat(int fildes, struct stat *buf);
80 int fstat(int fildes, struct stat *buf) in stat()
82 return fstatat(fildes, "", buf, AT_EMPTY_PATH);
83 fstat(int fildes,struct stat * buf) fstat() argument
/linux/tools/include/nolibc/
H A Dsys.h146 * int fchdir(int fildes); in fchdir()
162 int _sys_fchdir(int fildes)
164 return __nolibc_syscall1(__NR_fchdir, fildes); in chmod()
168 int fchdir(int fildes)
170 return __sysret(_sys_fchdir(fildes));
137 sys_fchdir(int fildes) sys_fchdir() argument
143 fchdir(int fildes) fchdir() argument
/linux/fs/
H A Dpipe.c1113 static int do_pipe2(int __user *fildes, int flags) in do_pipe2() argument
1121 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) { in do_pipe2()
1135 SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags) in SYSCALL_DEFINE2() argument
1137 return do_pipe2(fildes, flags); in SYSCALL_DEFINE2()
1140 SYSCALL_DEFINE1(pipe, int __user *, fildes) in SYSCALL_DEFINE1() argument
1142 return do_pipe2(fildes, 0); in SYSCALL_DEFINE1()