Home
last modified time | relevance | path

Searched refs:wState (Results 1 - 6 of 6) sorted by relevance

/third_party/node/lib/internal/streams/
H A Dutils.js108 const wState = stream._writableState;
110 const state = wState || rState;
118 const wState = stream._writableState;
119 if (wState?.errored) return false;
120 if (typeof wState?.ended !== 'boolean') return null;
121 return wState.ended;
128 const wState = stream._writableState;
129 if (wState?.errored) return false;
130 if (typeof wState?.finished !== 'boolean') return null;
132 wState
[all...]
H A Dtransform.js172 const wState = this._writableState;
186 wState.ended || // Backwards compat.
H A Dend-of-stream.js80 const wState = stream._writableState;
191 } else if (writable && !wState) { // legacy streams
210 } else if (wState?.errorEmitted || rState?.errorEmitted) {
H A Dwritable.js838 const wState = this._writableState;
839 if (!wState) return false;
840 return !wState.destroyed && !wState.ending && wState.needDrain;
H A Dreadable.js1407 const wState = stream._writableState;
1408 const autoDestroy = !wState || (
1409 wState.autoDestroy &&
1412 (wState.finished || wState.writable === false)
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_cdc.h159 uWord wState; member

Completed in 5 milliseconds