Lines Matching refs:fd
541 struct pid *pidfd_get_pid(unsigned int fd, unsigned int *flags) in pidfd_get_pid() argument
543 CLASS(fd, f)(fd); in pidfd_get_pid() local
646 int fd; in SYSCALL_DEFINE2() local
659 fd = pidfd_create(p, flags); in SYSCALL_DEFINE2()
662 return fd; in SYSCALL_DEFINE2()
828 static struct file *__pidfd_fget(struct task_struct *task, int fd) in __pidfd_fget() argument
838 file = fget_task(task, fd); in __pidfd_fget()
866 static int pidfd_getfd(struct pid *pid, int fd) in pidfd_getfd() argument
876 file = __pidfd_fget(task, fd); in pidfd_getfd()
903 SYSCALL_DEFINE3(pidfd_getfd, int, pidfd, int, fd, in SYSCALL_DEFINE3() argument
912 CLASS(fd, f)(pidfd); in SYSCALL_DEFINE3() local
920 return pidfd_getfd(pid, fd); in SYSCALL_DEFINE3()