(fds: &[pollfd], fd: i32)
| 395 | |
| 396 | #[inline] |
| 397 | fn search(fds: &[pollfd], fd: i32) -> Result<usize, usize> { |
| 398 | fds.binary_search_by_key(&fd, |pfd| pfd.fd) |
| 399 | } |
| 400 | |
| 401 | fn insert_fd(fds: &mut Vec<pollfd>, fd: i32, events: i16) { |
| 402 | match search(fds, fd) { |
no outgoing calls
no test coverage detected