Searched defs:read_fd (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/latencytop/common/
H A Dlatencytop.c475 fd_set read_fd; local
494 FD_ZERO(&read_fd);
495 FD_SET(gpipe, &read_fd);
497 if (select(gpipe + 1, &read_fd, NULL, NULL, &timeout) > 0) {
H A Ddisplay.c791 fd_set read_fd; local
853 FD_ZERO(&read_fd);
854 FD_SET(0, &read_fd);
855 FD_SET(gpipe, &read_fd);
858 if (select(gpipe + 1, &read_fd, NULL, NULL, &timeout) > 0) {
861 if (FD_ISSET(gpipe, &read_fd)) {
/illumos-gate/usr/src/lib/auditd_plugins/remote/
H A Dtransport.c649 * read_fd() - reads data of length len from the given file descriptor fd to the
654 read_fd(int fd, char *buf, size_t len) function
677 DPRINT((dfile, "read_fd: Read %d bytes.\n", len_o - len));
1021 if (!read_fd(pipe_fd->fd, (char *)&np_data,
1048 if (!read_fd(recv_fd->fd, (char *)&len, sizeof (len))) {
1076 if (!read_fd(recv_fd->fd, (char *)in_buf.value, len)) {

Completed in 71 milliseconds