Lines Matching refs:fds
2524 struct pollfd fds; in __osl_socket_poll() local
2534 fds.fd = pSocket->m_Socket; in __osl_socket_poll()
2535 fds.events = nEvent; in __osl_socket_poll()
2536 fds.revents = 0; in __osl_socket_poll()
2546 result = poll (&fds, 1, timeout); in __osl_socket_poll()
2560 return ((fds.revents & nEvent) == nEvent); in __osl_socket_poll()
2570 fd_set fds; in __osl_socket_poll() local
2580 FD_ZERO(&fds); in __osl_socket_poll()
2581 FD_SET(pSocket->m_Socket, &fds); in __osl_socket_poll()
2592 (nEvent == POLLIN ) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2593 (nEvent == POLLOUT) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2594 (nEvent == POLLPRI) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2610 return (FD_ISSET(pSocket->m_Socket, &fds) ? sal_True : sal_False); in __osl_socket_poll()