Lines Matching full:close
1 //! The unsafe `close` for raw file descriptors.
11 /// `close(raw_fd)`—Closes a `RawFd` directly.
17 /// filesystem designers to not return errors from `close`. Users who chose to
36 …amming]: https://beej.us/guide/bgnet/html/split/system-calls-or-bust.html#close-and-shutdownget-ou…
37 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html
38 /// [Linux]: https://man7.org/linux/man-pages/man2/close.2.html
39 …ive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/close.2.html#//apple_ref/doc/man/2/close
41 /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=close&sektion=2
42 /// [NetBSD]: https://man.netbsd.org/close.2
43 /// [OpenBSD]: https://man.openbsd.org/close.2
44 /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=close§ion=2
45 /// [illumos]: https://illumos.org/man/2/close
46 …ibc]: https://www.gnu.org/software/libc/manual/html_node/Opening-and-Closing-Files.html#index-close
53 pub unsafe fn close(raw_fd: RawFd) { in close() function
54 backend::io::syscalls::close(raw_fd) in close()