Searched refs:SpliceFlags (Results 1 - 8 of 8) sorted by relevance
/third_party/rust/crates/rustix/tests/io/ |
H A D | pipe.rs | 5 use rustix::io::{pipe, splice, SpliceFlags}; in test_splice_cursor() 17 splice(&src, None, &write_p, None, 5, SpliceFlags::empty()).unwrap(); in test_splice_cursor() 18 splice(&read_p, None, &dest, None, 5, SpliceFlags::empty()).unwrap(); in test_splice_cursor() 31 use rustix::io::{pipe, splice, SpliceFlags}; in test_splice_offset() 49 SpliceFlags::empty(), in test_splice_offset() 58 SpliceFlags::empty(), in test_splice_offset() 72 use rustix::io::{pipe, read, splice, write, SpliceFlags}; in test_splice_pipe2pipe() 79 splice(&read_p1, None, write_p2, None, 5, SpliceFlags::empty()).unwrap(); in test_splice_pipe2pipe() 89 use rustix::io::{pipe, read, vmsplice, IoSliceRaw, SpliceFlags}; in test_vmsplice_write() 99 unsafe { vmsplice(&write_p, &input, SpliceFlags in test_vmsplice_write() [all...] |
/third_party/rust/crates/rustix/src/io/ |
H A D | pipe.rs | 12 pub use backend::io::types::{IoSliceRaw, SpliceFlags}; 95 flags: SpliceFlags, in splice() 113 /// Additionally if `SpliceFlags::GIFT` is set, the caller must also ensure 127 flags: SpliceFlags, in vmsplice()
|
H A D | mod.rs | 75 pub use pipe::{splice, vmsplice, IoSliceRaw, SpliceFlags};
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
H A D | syscalls.rs | 27 use crate::io::{EventfdFlags, IoSliceRaw, ReadWriteFlags, SpliceFlags}; 518 flags: SpliceFlags, in splice() 546 flags: SpliceFlags, in vmsplice()
|
H A D | types.rs | 40 pub struct SpliceFlags: c::c_uint { structure names
|
/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
H A D | syscalls.rs | 20 use crate::io::SpliceFlags; 646 flags: SpliceFlags, in splice() 666 flags: SpliceFlags, in vmsplice()
|
H A D | types.rs | 38 pub struct SpliceFlags: c::c_uint { structure names
|
/third_party/rust/crates/rustix/src/ |
H A D | io_uring.rs | 447 pub struct SpliceFlags: u32 { structure names 732 pub splice_flags: SpliceFlags,
|
Completed in 4 milliseconds