Lines Matching refs:timeout
119 * timeout?: number;
218 * timeout?: number;
311 * timeout?: number;
334 timeout: 0,
343 // Validate the timeout, if present.
344 validateTimeout(options.timeout);
461 if (options.timeout > 0) {
465 }, options.timeout);
748 * timeout?: number;
755 validateTimeout(options.timeout);
763 if (options.timeout > 0) {
773 }, options.timeout);
813 * timeout?: number;
840 // Validate the timeout, if present.
841 validateTimeout(options.timeout);
906 * timeout?: number;
945 * timeout?: number;
985 function validateTimeout(timeout) {
986 if (timeout != null && !(NumberIsInteger(timeout) && timeout >= 0)) {
987 throw new ERR_OUT_OF_RANGE('timeout', 'an unsigned integer', timeout);