Lines Matching refs:select
15 /// Contains a set of file descriptors used by [`select`]
64 /// This can be used to calculate the `nfds` parameter of the [`select`] function.
69 /// # use nix::sys::select::FdSet;
76 /// [`select`]: fn.select.html
90 /// # use nix::sys::select::FdSet;
173 /// [select(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html)
176 pub fn select<'a, N, R, W, E, T>(
220 unsafe { libc::select(nfds, readfds, writefds, errorfds, timeout) };
237 /// Unlike [`select`](#fn.select), `pselect` does not mutate the `timeout` value.
398 select(None, &mut fd_set, None, None, &mut timeout).unwrap()
417 select(
443 select(