Home
last modified time | relevance | path

Searched refs:_send (Results 1 – 13 of 13) sorted by relevance

/third_party/node/test/parallel/
Dtest-internal-socket-list-send.js33 _send: function(msg) { method
56 _send: function(msg) { process.nextTick(() => this.emit('disconnect')); } method
76 _send: function(msg) { method
101 _send: function(msg) { method
130 _send: function() { method
Dtest-http-1.0.js94 res.write('Hello, '); res._send('');
95 res.write('world!'); res._send('');
130 res.write('Hello, '); res._send('');
131 res.write('world!'); res._send('');
Dtest-internal-socket-list-receive.js15 _send: common.mustNotCall() property
27 _send: common.mustCall((msg) => { property
41 _send: common.mustCall((msg) => { property
/third_party/node/lib/internal/
Dsocket_list.js20 this.child._send(msg, undefined, swallowErrors);
70 self.child._send({
87 this.child._send({
Dchild_process.js667 target._send(target._pendingMessage.message,
675 target._send(args.message, args.handle, args.options, args.callback);
691 return target._send({ cmd: 'NODE_HANDLE_NACK' }, null, true);
697 target._send({ cmd: 'NODE_HANDLE_ACK' }, null, true);
745 return this._send(message, handle, options, callback);
756 target._send = function(message, handle, options, callback) { function
/third_party/node/lib/
D_http_outgoing.js359 OutgoingMessage.prototype._send = function _send(data, encoding, callback, byteLength) { method in OutgoingMessage
543 if (state.expect) this._send('');
937 msg._send(NumberPrototypeToString(len, 16), 'latin1', null);
938 msg._send(crlf_buf, null, null);
939 msg._send(chunk, encoding, null, len);
940 ret = msg._send(crlf_buf, null, callback);
942 ret = msg._send(chunk, encoding, callback, len);
1055 this._send('0\r\n' + this._trailer + '\r\n', 'latin1', finish);
1057 this._send('', 'latin1', finish);
1163 this._send('');
/third_party/python/Lib/multiprocessing/
Dresource_tracker.py155 self._send('REGISTER', name, rtype)
159 self._send('UNREGISTER', name, rtype)
161 def _send(self, cmd, name, rtype): member in ResourceTracker
Dconnection.py365 def _send(self, buf, write=_write): member in Connection
395 self._send(pre_header)
396 self._send(header)
397 self._send(buf)
404 self._send(header)
405 self._send(buf)
411 self._send(header + buf)
/third_party/node/test/fixtures/wpt/resources/
Dchannel.sub.js246 async _send(cmd, body=null) { method in anonymousFunction0a76628c0100.SendChannel
259 await this._send("message", msg);
267 await this._send("disconnectReader");
274 await this._send("delete");
/third_party/python/Lib/test/
Dtest_imaplib.py124 def _send(self, message): member in SimpleIMAPHandler
130 self._send(message + b'\r\n')
273 self._send(b'* CAPABILITY IMAP4rev1 AUTH\n')
719 self._send(b'* CAPABILITY IMAP4rev1 AUTH\n')
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dpcsc_funcs.c776 unsigned char *_send, size_t send_len, in scard_transmit() argument
787 _send, send_len); in scard_transmit()
792 _send, (unsigned long) send_len, in scard_transmit()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dpcsc_funcs.c776 unsigned char *_send, size_t send_len, in scard_transmit() argument
787 _send, send_len); in scard_transmit()
792 _send, (unsigned long) send_len, in scard_transmit()
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md947 * unix: speed up uv\_async\_send() (Ben Noordhuis)