Home | History | Annotate | Download | only in cups

Lines Matching refs:timeout

35 		           double timeout);
41 * Reads up to "bytes" bytes from the backchannel/backend. The "timeout"
51 double timeout) /* I - Timeout in seconds, typically 0.0 to poll */
54 struct timeval tval; /* Timeout value */
64 cups_setup(&input, &tval, timeout);
66 if (timeout < 0.0)
74 return (-1); /* Timeout! */
91 * Writes "bytes" bytes to the backchannel/filter. The "timeout" parameter
103 double timeout) /* I - Timeout in seconds, typically 1.0 */
106 struct timeval tval; /* Timeout value */
126 cups_setup(&output, &tval, timeout);
128 if (timeout < 0.0)
136 return (-1); /* Timeout! */
179 double timeout) /* I - Timeout in seconds */
181 tval->tv_sec = (int)timeout;
182 tval->tv_usec = (int)(1000000.0 * (timeout - tval->tv_sec));