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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/init/
H A Ddo_mounts_rd.c36 static int __init crd_load(int in_fd, int out_fd, decompress_fn deco);
161 int in_fd, out_fd; local
175 in_fd = sys_open(from, O_RDONLY, 0);
176 if (in_fd < 0)
179 nblocks = identify_ramdisk_image(in_fd, rd_image_start, &decompressor);
184 if (crd_load(in_fd, out_fd, decompressor) == 0)
214 if (sys_ioctl(in_fd, BLKGETSIZE, (unsigned long)&devblocks) < 0)
239 if (sys_close(in_fd)) {
244 in_fd = sys_open(from, O_RDONLY, 0);
245 if (in_fd <
318 crd_load(int in_fd, int out_fd, decompress_fn deco) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dmktree.c43 int in_fd, out_fd; local
81 if ((in_fd = open(argv[1], O_RDONLY)) < 0) {
98 if (read(in_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) {
109 if (lseek(in_fd, (64 * 1024), SEEK_SET) < 0) {
124 if (read(in_fd, tmpbuf, sizeof(tmpbuf)) < 0) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/drivers/
H A Dharddog_user.c106 void stop_watchdog(int in_fd, int out_fd) argument
108 close(in_fd);
H A Dharddog_kern.c94 extern void stop_watchdog(int in_fd, int out_fd);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/kernel/
H A Dsys_parisc32.c156 asmlinkage int sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, s32 count) argument
166 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
175 asmlinkage int sys32_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset, s32 count) argument
185 ret = sys_sendfile64(out_fd, in_fd, offset ? (loff_t __user *)&lof : NULL, count);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_bunzip2.c70 int in_fd, out_fd, inbufCount, inbufPos /*, outbufPos*/; member in struct:bunzip_data
106 /* if "no input fd" case: in_fd == -1, read fails, we jump */
107 bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE);
629 /* Allocate the structure, read file header. If in_fd==-1, inbuf must contain
630 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are
637 int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, argument
649 if (in_fd != -1) i += IOBUF_SIZE;
657 bd->in_fd = in_fd;
658 if (-1 == in_fd) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/adouble/
H A Dad_sendfile.c84 ssize_t sys_sendfile(int out_fd, int in_fd, off_t *_offset, size_t count) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dsys_ppc32.c141 /* Note: it is necessary to treat out_fd and in_fd as unsigned ints,
146 asmlinkage long compat_sys_sendfile(u32 out_fd, u32 in_fd, compat_off_t __user * offset, u32 count) argument
159 ret = sys_sendfile((int)out_fd, (int)in_fd, up, count);
168 asmlinkage int compat_sys_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset, s32 count) argument
181 ret = sys_sendfile64(out_fd, in_fd, up, count);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/include/
H A Dunarchive.h104 int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dread_write.c809 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, argument
822 in_file = fget_light(in_fd, &fput_needed_in);
887 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
899 ret = do_sendfile(out_fd, in_fd, &pos, count, (loff_t)0xFFFFFFFFUL);
901 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
909 return do_sendfile(out_fd, in_fd, NULL, count, 0);
912 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
920 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
926 return do_sendfile(out_fd, in_fd, NULL, count, 0);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dcompat_linux.h206 long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset,
208 long sys32_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset,
H A Dcompat_linux.c482 asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count) argument
492 ret = sys_sendfile(out_fd, in_fd,
502 asmlinkage long sys32_sendfile64(int out_fd, int in_fd, argument
513 ret = sys_sendfile64(out_fd, in_fd,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dsys_sparc32.c510 asmlinkage long compat_sys_sendfile(int out_fd, int in_fd, argument
522 ret = sys_sendfile(out_fd, in_fd,
533 asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd, argument
545 ret = sys_sendfile64(out_fd, in_fd,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/kernel/
H A Dlinux32.c266 SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd,
277 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/ia32/
H A Dsys_ia32.c423 asmlinkage long sys32_sendfile(int out_fd, int in_fd, argument
434 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsendfile.c121 extern int32 sendfile (int out_fd, int in_fd, int32 *offset, uint32 count);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dsyscalls.h509 asmlinkage long sys_sendfile(int out_fd, int in_fd,
511 asmlinkage long sys_sendfile64(int out_fd, int in_fd,

Completed in 274 milliseconds