Symbol: fd_file
sys/compat/linuxkpi/common/include/linux/file.h
192
return (fd_file(fd) == NULL);
sys/dev/cxgbe/tom/t4_cpl_io.c
2391
so = job->fd_file->f_data;
sys/dev/cxgbe/tom/t4_cpl_io.c
2542
error = mac_socket_check_send(job->fd_file->f_cred, so);
sys/dev/cxgbe/tom/t4_cpl_io.c
2756
so = job->fd_file->f_data;
sys/dev/cxgbe/tom/t4_ddp.c
2359
so = job->fd_file->f_data;
sys/dev/cxgbe/tom/t4_ddp.c
2744
struct socket *so = job->fd_file->f_data;
sys/dev/cxgbe/tom/t4_ddp.c
2785
struct socket *so = job->fd_file->f_data;
sys/kern/sys_socket.c
625
struct file *fp = job->fd_file;
sys/kern/sys_socket.c
797
so = job->fd_file->f_data;
sys/kern/vfs_aio.c
1234
fp = job->fd_file;
sys/kern/vfs_aio.c
1634
job->fd_file = fp;
sys/kern/vfs_aio.c
1818
if (job2->fd_file == job->fd_file &&
sys/kern/vfs_aio.c
565
if (job->fd_file)
sys/kern/vfs_aio.c
566
fdrop(job->fd_file, curthread);
sys/kern/vfs_aio.c
790
fp = job->fd_file;
sys/kern/vfs_aio.c
849
struct file *fp = job->fd_file;
sys/kern/vfs_aio.c
931
if (job->fd_file != sjob->fd_file ||
sys/sys/aio.h
148
struct file *fd_file; /* (*) pointer to file structure */
tools/regression/security/cap_test/cap_test_capmode.c
113
CHECK_SYSCALL_SUCCEEDS(dup, fd_file);
tools/regression/security/cap_test/cap_test_capmode.c
114
CHECK_SYSCALL_SUCCEEDS(fstat, fd_file, &sb);
tools/regression/security/cap_test/cap_test_capmode.c
115
CHECK_SYSCALL_SUCCEEDS(lseek, fd_file, 0, SEEK_SET);
tools/regression/security/cap_test/cap_test_capmode.c
116
CHECK_SYSCALL_SUCCEEDS(msync, &fd_file, 8192, MS_ASYNC);
tools/regression/security/cap_test/cap_test_capmode.c
118
CHECK_SYSCALL_SUCCEEDS(read, fd_file, &ch, sizeof(ch));
tools/regression/security/cap_test/cap_test_capmode.c
121
CHECK_SYSCALL_SUCCEEDS(write, fd_file, &ch, sizeof(ch));
tools/regression/security/cap_test/cap_test_capmode.c
130
CHECK_NOT_CAPMODE(fchflags, fd_file, UF_NODUMP);
tools/regression/security/cap_test/cap_test_capmode.c
66
int fd_close, fd_dir, fd_file, fd_socket, fd2[2];
tools/regression/security/cap_test/cap_test_capmode.c
72
REQUIRE(fd_file = open("/tmp/cap_capmode", O_RDWR|O_CREAT, 0644));