Home | History | Annotate | Download | only in cups

Lines Matching refs:wait_value

1198       while (!_httpWait(http, http->wait_value, 1))
1729 while (!httpWait(http, http->wait_value))
4058 while (!httpWait(http, http->wait_value))
4533 http->wait_value = (int)(http->timeout_value * 1000);
4535 if (http->wait_value <= 0)
4536 http->wait_value = 60000;
4539 http->wait_value = 10000;
4667 while ((nfds = poll(&pfd, 1, http->wait_value)) < 0 &&
4677 timeout.tv_sec = http->wait_value / 1000;
4678 timeout.tv_usec = 1000 * (http->wait_value % 1000);