Home
last modified time | relevance | path

Searched refs:fcntl_dupfd (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/io/
Dfcntl.rs139 pub fn fcntl_dupfd<Fd: AsFd>(fd: Fd, min: RawFd) -> io::Result<OwnedFd> { in fcntl_dupfd() function
140 backend::io::syscalls::fcntl_dupfd(fd.as_fd(), min) in fcntl_dupfd()
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/maybe_polyfill/no_std/os/fd/
Downed.rs110 let fd = crate::io::fcntl_dupfd(self)?; in try_clone()
142 let fd = crate::io::fcntl_dupfd(self, 3)?; in try_clone_to_owned()
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/backend/libc/io/
Dsyscalls.rs289 pub(crate) fn fcntl_dupfd(fd: BorrowedFd<'_>, min: RawFd) -> io::Result<OwnedFd> { in fcntl_dupfd() function