Lines Matching refs:fds
2562 struct pollfd fds; in __osl_socket_poll() local
2569 fds.fd = pSocket->m_Socket; in __osl_socket_poll()
2570 fds.events = nEvent; in __osl_socket_poll()
2571 fds.revents = 0; in __osl_socket_poll()
2581 result = poll (&fds, 1, timeout); in __osl_socket_poll()
2595 return ((fds.revents & nEvent) == nEvent); in __osl_socket_poll()
2605 fd_set fds; in __osl_socket_poll() local
2612 FD_ZERO(&fds); in __osl_socket_poll()
2613 FD_SET(pSocket->m_Socket, &fds); in __osl_socket_poll()
2624 (nEvent == POLLIN ) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2625 (nEvent == POLLOUT) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2626 (nEvent == POLLPRI) ? PTR_FD_SET(fds) : NULL, in __osl_socket_poll()
2642 return (FD_ISSET(pSocket->m_Socket, &fds) ? sal_True : sal_False); in __osl_socket_poll()