Lines Matching refs:timeout
351 pa_poll (struct pollfd *pfd, nfds_t nfd, int timeout)
390 /* convert timeout number into a timeval structure */
391 if (timeout == 0)
397 else if (timeout > 0)
400 ptv->tv_sec = timeout / 1000;
401 ptv->tv_usec = (timeout % 1000) * 1000;
403 else if (timeout == INFTIM)
535 timeout = 0;
555 if (timeout == INFTIM)
558 wait_timeout = timeout;
636 if (!rc && timeout == INFTIM)