Home
last modified time | relevance | path

Searched refs:_write (Results 1 - 25 of 77) sorted by relevance

1234

/third_party/python/Lib/xml/sax/
H A Dsaxutils.py117 self._write = out.write
145 self._write('>')
151 self._write('<?xml version="1.0" encoding="%s"?>\n' %
168 self._write('<' + name)
170 self._write(' %s=%s' % (name, quoteattr(value)))
174 self._write(">")
178 self._write('/>')
181 self._write('</%s>' % name)
185 self._write('<' + self._qname(name))
189 self._write(' xmln
[all...]
/third_party/node/test/parallel/
H A Dtest-stream2-writable.js35 _write(chunk, encoding, cb) {
162 tw._write = function(chunk, encoding, cb) {
165 return TestWriter.prototype._write.call(this, chunk, encoding, cb);
268 tw._write = common.mustCall(function(chunk) {
278 w._write = common.mustNotCall();
291 d._write = common.mustNotCall();
303 w._write = common.mustCall((msg) => {
322 w._write = function(chunk, e, cb) {
343 w._write = function(chunk, e, cb) {
357 // Verify finish does not come before synchronous _write() callbac
[all...]
H A Dtest-stream-writable-write-error.js34 _write() {}
43 _write() {}
51 _write() {}
59 _write() {}
68 _write() {}
H A Dtest-stream2-objects.js219 w._write = function(chunk, encoding, cb) {
234 w._write = function(chunk, encoding, cb) {
258 w._write = function(chunk, encoding, cb) {
282 w._write = function(chunk, encoding, cb) {
H A Dtest-stream2-pipe-error-handling.js44 dest._write = function(chunk, encoding, cb) {
84 dest._write = function(chunk, encoding, cb) {
H A Dtest-stream3-pause-then-read.js115 w._write = function(chunk, encoding, cb) {
159 w._write = function(chunk, encoding, cb) {
H A Dtest-stream2-finish-pipe.js32 w._write = function(data, encoding, cb) {
H A Dtest-stream2-finish-pipe-error.js13 w._write = function(data, encoding, cb) {
H A Dtest-http-client-readable.js46 s._write = function(data, enc, cb) {
H A Dtest-repl-colors.js16 inout._write = function(s, _, cb) {
H A Dtest-stream-writableState-ending.js16 writable._write = (chunk, encoding, cb) => {
H A Dtest-stream2-base64-single-char-read-end.js42 dst._write = function(chunk, enc, cb) {
55 assert.fail('timed out waiting for _write');
/third_party/mesa3d/src/gallium/tools/trace/
H A Ddiff_state.py70 def _write(self, s): member in Dumper
74 self._write(' '*self.level)
77 self._write('\n')
92 self._write('{')
98 self._write('%s: ' % name)
102 self._write(',')
108 self._write('}')
119 self._write(',')
124 self._write('[')
131 self._write(']')
[all...]
/third_party/python/Lib/wsgiref/
H A Dhandlers.py262 """Transmit version/status/date/server, via self._write()"""
265 self._write(('HTTP/%s %s\r\n' % (self.http_version,self.status)).encode('iso-8859-1'))
267 self._write(
271 self._write(('Server: %s\r\n' % self.server_software).encode('iso-8859-1'))
273 self._write(('Status: %s\r\n' % self.status).encode('iso-8859-1'))
292 self._write(data)
341 """Transmit headers to the client, via self._write()"""
346 self._write(bytes(self.headers))
403 def _write(self,data): member in BaseHandler
413 """Override in subclass to force sending of recent '_write()' call
465 def _write(self,data): global() member in SimpleHandler
[all...]
/third_party/node/test/common/
H A Dhijackstdio.js7 const _write = stdWrite[name] = stream.write;
17 _write.call(stream, data, callback);
H A Dudppair.js17 (wrap, buffers, addr) => this._write(wrap, buffers, addr);
48 _write(wrap, buffers, addr) {
H A Dduplexpair.js23 _write(chunk, encoding, callback) {
/third_party/node/lib/internal/crypto/
H A Dsig.js67 Sign.prototype._write = function _write(chunk, encoding, callback) {
208 Verify.prototype._write = Sign.prototype._write;
/third_party/node/test/addons/repl-domain-abort/
H A Dtest.js56 dOutput._write = function _write(chunk, encoding, cb) { function
/third_party/node/lib/internal/streams/
H A Dwritable.js23 // Implement an async ._write(chunk, encoding, cb), and it'll handle all
116 // Should we decode strings into buffers before passing to _write?
145 // may call the _write() callback in the same tick, so that we don't
149 // The callback that's passed to _write(chunk, cb).
155 // The amount that is being written when _write is called.
159 // synchronous _write() completion.
174 // Emit prefinish if the only thing we're waiting for is _write cbs
240 this._write = options.write;
286 function _write(stream, chunk, encoding, cb) { function
337 return _write(thi
[all...]
H A Dcompose.js125 d._write = function(chunk, encoding, callback) {
149 d._write = async function(chunk, encoding, callback) {
/third_party/musl/porting/liteos_a_newlib/kernel/src/
H A Dfs.c52 ssize_t _write(int fd, const void *buf, size_t nbyte) in _write() function
99 ssize_t _write(int fd, const void *buf, size_t nbyte) in _write() function
/third_party/node/benchmark/streams/
H A Dpipe-object-mode.js18 w._write = (data, enc, cb) => cb();
H A Dpipe.js18 w._write = (data, enc, cb) => cb();
/third_party/node/lib/internal/fs/
H A Dsync_write_stream.js25 SyncWriteStream.prototype._write = function(chunk, encoding, cb) {

Completed in 7 milliseconds

1234