Home
last modified time | relevance | path

Searched refs:copy_file_range (Results 1 – 25 of 73) sorted by relevance

123

/third_party/rust/crates/rustix/tests/fs/
Dinvalid_offset.rs146 use rustix::fs::{copy_file_range, cwd, openat, Mode, OFlags}; in invalid_offset_copy_file_range()
168 copy_file_range(&foo, Some(&mut off_in), &bar, Some(&mut off_out), 1).unwrap_err(); in invalid_offset_copy_file_range()
172 copy_file_range(&foo, Some(&mut off_in), &bar, Some(&mut off_out), 1).unwrap_err(); in invalid_offset_copy_file_range()
176 copy_file_range(&foo, Some(&mut off_in), &bar, Some(&mut off_out), 1).unwrap_err(); in invalid_offset_copy_file_range()
180 copy_file_range(&foo, Some(&mut off_in), &bar, Some(&mut off_out), 1).unwrap_err(); in invalid_offset_copy_file_range()
184 copy_file_range(&foo, Some(&mut off_in), &bar, Some(&mut off_out), 1).unwrap_err(); in invalid_offset_copy_file_range()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
Dcopy_file_range.c60 result = copy_file_range(fd_in, NULL, fd_out, NULL, wlen, 0); in copy_file_range_0100()
93 int result = copy_file_range(-1, NULL, -1, NULL, 0, 0); in copy_file_range_0200()
139 result = copy_file_range(fd_in, NULL, fd_out, NULL, wlen, 0); in copy_file_range_0300()
Dtest_src_functionalext_supplement_linux.gni72 "copy_file_range",
/third_party/rust/crates/rustix/src/fs/
Dcopy_file_range.rs12 pub fn copy_file_range<InFd: AsFd, OutFd: AsFd>( in copy_file_range() function
19 backend::fs::syscalls::copy_file_range(fd_in.as_fd(), off_in, fd_out.as_fd(), off_out, len) in copy_file_range()
Dmod.rs8 mod copy_file_range; module
109 pub use copy_file_range::copy_file_range;
/third_party/musl/src/linux/
Dcopy_file_range.c5 ssize_t copy_file_range(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned … in copy_file_range() function
/third_party/ltp/include/lapi/syscalls/
Dhppa.in27 copy_file_range 346
Daarch64.in271 copy_file_range 285
Dloongarch.in271 copy_file_range 285
Darc.in271 copy_file_range 285
Dmips_n64.in320 copy_file_range 5320
Dmips_n32.in324 copy_file_range 6324
Dia64.in318 copy_file_range 1347
Ds390x.in320 copy_file_range 375
Dsh.in352 copy_file_range 380
Dx86_64.in327 copy_file_range 326
Dsparc64.in340 copy_file_range 357
Dsparc.in356 copy_file_range 357
Dmips_o32.in360 copy_file_range 4360
Di386.in375 copy_file_range 377
/third_party/ltp/testcases/kernel/syscalls/copy_file_range/
Dcopy_file_range.h50 return copy_file_range(fd_in, off_in, in sys_copy_file_range()
/third_party/libfuse/example/
Dpassthrough.c473 res = copy_file_range(fd_in, &offset_in, fd_out, &offset_out, len, in xmp_copy_file_range()
545 .copy_file_range = xmp_copy_file_range,
Dpassthrough_fh.c586 res = copy_file_range(fi_in->fh, &off_in, fi_out->fh, &off_out, len, in xmp_copy_file_range()
652 .copy_file_range = xmp_copy_file_range,
/third_party/node/deps/uv/src/unix/
Dfreebsd.c300 return copy_file_range(fd_in, off_in, fd_out, off_out, len, flags); in uv__fs_copy_file_range()
/third_party/libuv/src/unix/
Dfreebsd.c300 return copy_file_range(fd_in, off_in, fd_out, off_out, len, flags); in uv__fs_copy_file_range()

123