Lines Matching defs:timeout
230 * of Tcl_WaitForFile, to keep track of the file and timeout.
237 int timeout; /* Original "timeout" argument to
244 * timeout period has elapsed. */
773 * Compute when the timeout should fire and fill in the other fields
808 * Destroys the topmost modal timeout handler, which must
816 Tcl_TimerProc *proc; /* Callback procedure for the timeout. */
825 panic("Tcl_DeleteModalTimeout found timeout stack corrupted");
1023 * Invoke the current modal timeout first, if there is one and
2168 * or writable, with an optional timeout.
2174 * procedure will not return until either "timeout" milliseconds
2176 * has occurred for file (a return value of 0 means that a timeout
2187 TclWaitForFile(file, mask, timeout)
2192 int timeout; /* Maximum amount of time to wait for one
2202 * If there is a non-zero finite timeout, compute the time when
2206 if (timeout > 0) {
2208 abortTime.sec = now.sec + timeout/1000;
2209 abortTime.usec = now.usec + (timeout%1000)*1000;
2218 * file to become ready or a timeout to occur.
2223 if (timeout > 0) {
2235 } else if (timeout == 0) {
2246 if (timeout == 0) {