Lines Matching refs:now
309 * From now on, whenever the I/O channel given by file becomes
504 * now ready.
913 * now ready.
2198 Tcl_Time abortTime, now, blockTime;
2207 TclpGetTime(&now);
2208 abortTime.sec = now.sec + timeout/1000;
2209 abortTime.usec = now.usec + (timeout%1000)*1000;
2224 blockTime.sec = abortTime.sec - now.sec;
2225 blockTime.usec = abortTime.usec - now.usec;
2249 TclpGetTime(&now);
2250 if ((abortTime.sec < now.sec)
2251 || ((abortTime.sec == now.sec)
2252 && (abortTime.usec <= now.usec))) {