Lines Matching refs:timeout
23 kKeepAliveDefaultTimeout: Symbol("default keep alive timeout"),
24 kKeepAliveMaxTimeout: Symbol("max keep alive timeout"),
25 kKeepAliveTimeoutThreshold: Symbol("keep alive timeout threshold"),
26 kKeepAliveTimeoutValue: Symbol("keep alive timeout"),
28 kHeadersTimeout: Symbol("headers timeout"),
29 kBodyTimeout: Symbol("body timeout"),
650 var KEEPALIVE_TIMEOUT_EXPR = /timeout=(\d+)/;
765 timeout: socket.timeout,
7207 clearTimeout(timeout) {
7208 if (timeout instanceof Timeout) {
7209 timeout.clear();
7211 clearTimeout(timeout);
7666 function buildConnector({ allowH2, maxCachedSessions, socketPath, timeout, ...opts }) {
7672 timeout = timeout == null ? 1e4 : timeout;
7716 const cancelTimeout = setupTimeout(() => onConnectTimeout(socket), timeout);
7736 function setupTimeout(onConnectTimeout2, timeout) {
7737 if (!timeout) {
7751 }, timeout);
8526 timeout: connectTimeout,
8770 this.timeout = null;
8791 timers.clearTimeout(this.timeout);
8793 this.timeout = timers.setTimeout(onParserTimeout, value, this);
8794 if (this.timeout.unref) {
8795 this.timeout.unref();
8798 this.timeout = null;
8801 } else if (this.timeout) {
8802 if (this.timeout.refresh) {
8803 this.timeout.refresh();
8815 if (this.timeout) {
8816 if (this.timeout.refresh) {
8817 this.timeout.refresh();
8882 timers.clearTimeout(this.timeout);
8883 this.timeout = null;
8991 } else if (this.timeout) {
8992 if (this.timeout.refresh) {
8993 this.timeout.refresh();
9012 const timeout = Math.min(
9016 if (timeout <= 0) {
9019 client[kKeepAliveTimeoutValue] = timeout;
9051 if (this.timeout) {
9052 if (this.timeout.refresh) {
9053 this.timeout.refresh();
9125 util.destroy(socket, new InformationalError("socket idle timeout"));
9983 if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) {
9984 if (socket[kParser].timeout.refresh) {
9985 socket[kParser].timeout.refresh();
10020 if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) {
10021 if (socket[kParser].timeout.refresh) {
10022 socket[kParser].timeout.refresh();
10107 timeout: connectTimeout,