Home
last modified time | relevance | path

Searched refs:off_in (Results 1 – 12 of 12) sorted by relevance

/external/ltp/testcases/kernel/syscalls/copy_file_range/
Dcopy_file_range01.c143 static void test_one(size_t len, loff_t *off_in, loff_t *off_out) in test_one() argument
147 loff_t *off_in_ori = off_in; in test_one()
153 if (off_in) { in test_one()
154 off_in_copy = *off_in; in test_one()
155 off_in = &off_in_copy; in test_one()
156 sprintf(str_off_in, "%ld", (long)*off_in); in test_one()
177 TEST(tst_syscall(__NR_copy_file_range, fd_in, off_in, fd_out, in test_one()
194 ret |= check_file_offset("(in)", fd_in, len, off_in_ori, off_in); in test_one()
/external/strace/tests-mx32/
Dsplice.c44 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
46 *off_in = 0xdeadbef1facefed1ULL; in main()
52 fd_in, off_in, fd_out, off_out, len, flags); in main()
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len, in main()
Dcopy_file_range.c45 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
47 *off_in = 0xdeadbef1facefed1; in main()
53 fd_in, off_in, fd_out, off_out, len, flags); in main()
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags, in main()
/external/strace/tests/
Dsplice.c44 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
46 *off_in = 0xdeadbef1facefed1ULL; in main()
52 fd_in, off_in, fd_out, off_out, len, flags); in main()
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len, in main()
Dcopy_file_range.c45 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
47 *off_in = 0xdeadbef1facefed1; in main()
53 fd_in, off_in, fd_out, off_out, len, flags); in main()
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags, in main()
/external/strace/tests-m32/
Dsplice.c44 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
46 *off_in = 0xdeadbef1facefed1ULL; in main()
52 fd_in, off_in, fd_out, off_out, len, flags); in main()
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len, in main()
Dcopy_file_range.c45 TAIL_ALLOC_OBJECT_CONST_PTR(long long int, off_in); in main()
47 *off_in = 0xdeadbef1facefed1; in main()
53 fd_in, off_in, fd_out, off_out, len, flags); in main()
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags, in main()
/external/ltp/include/lapi/
Dsplice.h28 ssize_t splice(int fd_in, loff_t *off_in, int fd_out, in splice() argument
31 return tst_syscall(__NR_splice, fd_in, off_in, in splice()
/external/e2fsprogs/lib/ext2fs/
Dqcow2.c134 static int qcow2_copy_data(int fdin, int fdout, ext2_off64_t off_in, in qcow2_copy_data() argument
144 if (ext2fs_llseek(fdin, off_in, SEEK_SET) < 0) in qcow2_copy_data()
/external/kernel-headers/original/uapi/linux/
Dfuse.h812 uint64_t off_in; member
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h1668 #define __sanitizer_syscall_pre_splice(fd_in, off_in, fd_out, off_out, len, \ argument
1670 __sanitizer_syscall_pre_impl_splice((long)(fd_in), (long)(off_in), \
1673 #define __sanitizer_syscall_post_splice(res, fd_in, off_in, fd_out, off_out, \ argument
1675 __sanitizer_syscall_post_impl_splice(res, (long)(fd_in), (long)(off_in), \
2960 void __sanitizer_syscall_pre_impl_splice(long fd_in, long off_in, long fd_out,
2962 void __sanitizer_syscall_post_impl_splice(long res, long fd_in, long off_in,
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc2637 PRE_SYSCALL(splice)(long fd_in, void *off_in, long fd_out, void *off_out,
2640 POST_SYSCALL(splice)(long res, long fd_in, void *off_in, long fd_out,
2643 if (off_in) POST_WRITE(off_in, sizeof(long long));