Home
last modified time | relevance | path

Searched refs:_read (Results 1 – 25 of 168) sorted by relevance

1234567

/third_party/node/deps/npm/node_modules/sorted-union-stream/
Dtest.js8 a._read = b._read = function () {}
40 a._read = b._read = function () {}
72 a._read = b._read = function () {}
104 a._read = b._read = function () {}
140 a._read = function () {} function
141 b._read = function () {} function
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
Ddriver_roboswitch.c289 u16 _read, addr_be16[3], addr_read[3], ports_read; in wpa_driver_roboswitch_leave() local
294 ROBO_ARLCTRL_CONF, &_read, 1) < 0) in wpa_driver_roboswitch_leave()
297 if (!(_read & (1 << 4))) return -1; in wpa_driver_roboswitch_leave()
316 _read &= ~(1 << 4); in wpa_driver_roboswitch_leave()
318 ROBO_ARLCTRL_CONF, &_read, in wpa_driver_roboswitch_leave()
361 u16 vlan = 0, _read[2]; in wpa_driver_roboswitch_init() local
422 _read[0] = ROBO_VLAN_MAX; in wpa_driver_roboswitch_init()
424 _read, 1); in wpa_driver_roboswitch_init()
426 _read + 1, 1); in wpa_driver_roboswitch_init()
427 drv->is_5350 = _read[0] == _read[1]; in wpa_driver_roboswitch_init()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver_roboswitch.c289 u16 _read, addr_be16[3], addr_read[3], ports_read; in wpa_driver_roboswitch_leave() local
294 ROBO_ARLCTRL_CONF, &_read, 1) < 0) in wpa_driver_roboswitch_leave()
297 if (!(_read & (1 << 4))) return -1; in wpa_driver_roboswitch_leave()
316 _read &= ~(1 << 4); in wpa_driver_roboswitch_leave()
318 ROBO_ARLCTRL_CONF, &_read, in wpa_driver_roboswitch_leave()
361 u16 vlan = 0, _read[2]; in wpa_driver_roboswitch_init() local
422 _read[0] = ROBO_VLAN_MAX; in wpa_driver_roboswitch_init()
424 _read, 1); in wpa_driver_roboswitch_init()
426 _read + 1, 1); in wpa_driver_roboswitch_init()
427 drv->is_5350 = _read[0] == _read[1]; in wpa_driver_roboswitch_init()
[all …]
/third_party/boost/boost/process/
Dpipe.hpp113 basic_pipebuf() : _write(default_buffer_size), _read(default_buffer_size) in basic_pipebuf()
115 this->setg(_read.data(), _read.data()+ 128, _read.data() + 128); in basic_pipebuf()
133 _read(default_buffer_size) in basic_pipebuf()
135 this->setg(_read.data(), _read.data()+ 128, _read.data() + 128); in basic_pipebuf()
141 _read(default_buffer_size) in basic_pipebuf()
143 this->setg(_read.data(), _read.data()+ 128, _read.data() + 128); in basic_pipebuf()
199 if (this->egptr() == &_read.back()) //ok, so we're at the end of the buffer in underflow()
200 this->setg(_read.data(), _read.data()+ 10, _read.data() + 10); in underflow()
203 auto len = &_read.back() - this->egptr() ; in underflow()
260 std::vector<char_type> _read; member
/third_party/node/test/parallel/
Dtest-stream-readable-event.js35 r._read = common.mustNotCall();
55 r._read = common.mustCall();
74 r._read = common.mustNotCall();
97 r._read = function() { function in r
120 r._read = function() { function in r
Dtest-stream2-objects.js45 r._read = common.mustNotCall();
91 r._read = function(n) { function in r
108 r._read = function(n) { function in r
128 r._read = common.mustNotCall();
145 r._read = common.mustNotCall();
160 r._read = common.mustNotCall();
181 r._read = function(n) { function in r
209 r._read = common.mustNotCall();
Dtest-stream-readable-constructor-set-methods.js6 const _read = common.mustCall(function _read(n) { constant
10 const r = new Readable({ read: _read });
Dtest-stream-big-push.js35 function _read() { function
50 r._read = common.mustCall(_read, 3);
Dtest-stream2-basic.js39 _read(n) { method in TestReader
57 this._read(n);
276 r._read = common.mustNotCall();
348 r._read = common.mustNotCall();
376 r._read = function(n) { function in r
398 r._read = function(n) { function in r
419 r._read = common.mustCall();
/third_party/python/Lib/
Dpty.py130 def _read(fd): function
134 def _copy(master_fd, master_read=_read, stdin_read=_read):
163 def spawn(argv, master_read=_read, stdin_read=_read):
Dgzip.py84 self._read = 0
87 if self._read is None:
89 if self._read + size <= self._length:
90 read = self._read
91 self._read += size
92 return self._buffer[read:self._read]
94 read = self._read
95 self._read = None
100 if self._read is None:
103 self._read -= len(prepend)
[all …]
/third_party/node/deps/npm/node_modules/asynckit/lib/
Dreadable_asynckit.js22 this._read = _read;
88 function _read() function
/third_party/node/deps/npm/node_modules/fs-minipass/
Dindex.js31 const _read = Symbol('_read') constant
60 this[_read]()
86 this[_read]()
94 [_read] () {
110 this[_read]()
150 this[_read]()
171 [_read] () {
/third_party/node/deps/npm/node_modules/duplexer3/
Dindex.js35 self._read();
60 DuplexWrapper.prototype._read = function _read() { method in DuplexWrapper
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/
D_stream_transform.js109 stream._read(rs.highWaterMark);
172 this._read(rs.highWaterMark);
179 Transform.prototype._read = function(n) { method in Transform
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_transform.js94 this._read(rs.highWaterMark);
164 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
171 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/
D_stream_transform.js98 this._read(rs.highWaterMark);
172 …if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMa…
179 Transform.prototype._read = function (n) { method in Transform

1234567