Searched refs:in_fd (Results 1 - 12 of 12) sorted by relevance

/linux-4.4.14/init/
H A Ddo_mounts_rd.c45 static int __init crd_load(int in_fd, int out_fd, decompress_fn deco);
188 int in_fd, out_fd; rd_load_image() local
202 in_fd = sys_open(from, O_RDONLY, 0); rd_load_image()
203 if (in_fd < 0) rd_load_image()
206 nblocks = identify_ramdisk_image(in_fd, rd_image_start, &decompressor); rd_load_image()
211 if (crd_load(in_fd, out_fd, decompressor) == 0) rd_load_image()
241 if (sys_ioctl(in_fd, BLKGETSIZE, (unsigned long)&devblocks) < 0) rd_load_image()
266 if (sys_close(in_fd)) { rd_load_image()
271 in_fd = sys_open(from, O_RDONLY, 0); rd_load_image()
272 if (in_fd < 0) { rd_load_image()
278 sys_read(in_fd, buf, BLOCK_SIZE); rd_load_image()
292 sys_close(in_fd); rd_load_image()
345 static int __init crd_load(int in_fd, int out_fd, decompress_fn deco) crd_load() argument
348 crd_infd = in_fd; crd_load()
/linux-4.4.14/arch/powerpc/boot/
H A Dmktree.c43 int in_fd, out_fd; main() local
81 if ((in_fd = open(argv[1], O_RDONLY)) < 0) { main()
98 if (read(in_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) { main()
109 if (lseek(in_fd, (64 * 1024), SEEK_SET) < 0) { main()
124 if (read(in_fd, tmpbuf, sizeof(tmpbuf)) < 0) { main()
/linux-4.4.14/tools/virtio/virtio-trace/
H A Dtrace-agent.h28 * @in_fd: fd of reading trace data path in cpu_num
36 int in_fd; member in struct:rw_thread_info
H A Dtrace-agent-rw.c33 rw_ti->in_fd = -1; rw_thread_info_new()
51 rw_ti->in_fd = open(in_path, O_RDONLY); rw_thread_init()
52 if (rw_ti->in_fd == -1) { rw_thread_init()
53 pr_err("Could not open in_fd (CPU:%d)\n", cpu); rw_thread_init()
129 rlen = splice(ts->in_fd, NULL, ts->read_pipe, NULL, rw_thread_main()
H A Dtrace-agent.c249 close(s->rw_ti[i]->in_fd); agent_info_free()
/linux-4.4.14/arch/um/drivers/
H A Dharddog_user.c106 void stop_watchdog(int in_fd, int out_fd) stop_watchdog() argument
108 close(in_fd); stop_watchdog()
H A Dharddog_kern.c95 extern void stop_watchdog(int in_fd, int out_fd);
/linux-4.4.14/fs/
H A Dread_write.c1155 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, do_sendfile() argument
1169 in = fdget(in_fd); do_sendfile()
1255 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count) SYSCALL_DEFINE4()
1265 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS); SYSCALL_DEFINE4()
1271 return do_sendfile(out_fd, in_fd, NULL, count, 0); SYSCALL_DEFINE4()
1274 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count) SYSCALL_DEFINE4()
1282 ret = do_sendfile(out_fd, in_fd, &pos, count, 0); SYSCALL_DEFINE4()
1288 return do_sendfile(out_fd, in_fd, NULL, count, 0); SYSCALL_DEFINE4()
1292 COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, COMPAT_SYSCALL_DEFINE4()
1303 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS); COMPAT_SYSCALL_DEFINE4()
1309 return do_sendfile(out_fd, in_fd, NULL, count, 0); COMPAT_SYSCALL_DEFINE4()
1312 COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, COMPAT_SYSCALL_DEFINE4()
1321 ret = do_sendfile(out_fd, in_fd, &pos, count, 0); COMPAT_SYSCALL_DEFINE4()
1327 return do_sendfile(out_fd, in_fd, NULL, count, 0); COMPAT_SYSCALL_DEFINE4()
/linux-4.4.14/tools/testing/selftests/exec/
H A Dexecveat.c139 int in_fd = open_or_die(src, O_RDONLY); exe_cp() local
143 fstat(in_fd, &info); exe_cp()
144 sendfile(out_fd, in_fd, NULL, info.st_size); exe_cp()
145 close(in_fd); exe_cp()
/linux-4.4.14/include/linux/
H A Dcompat.h685 asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
687 asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
H A Dsyscalls.h510 asmlinkage long sys_sendfile(int out_fd, int in_fd,
512 asmlinkage long sys_sendfile64(int out_fd, int in_fd,
/linux-4.4.14/lib/
H A Ddecompress_bunzip2.c625 /* Allocate the structure, read file header. If in_fd ==-1, inbuf must contain
626 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are

Completed in 416 milliseconds