/third_party/node/test/parallel/ |
D | test-fs-writev-promises.js | 23 let { bytesWritten, buffers } = await handle.writev([Buffer.from('')], 27 ({ bytesWritten, buffers } = await handle.writev(bufferArr, null)); 41 let { bytesWritten, buffers } = await handle.writev([Buffer.from('')]); 44 ({ bytesWritten, buffers } = await handle.writev(bufferArr)); 54 const result = await handle.writev([]);
|
D | test-fs-writev.js | 36 fs.writev(fd, bufferArr, null, done); 57 fs.writev(fd, bufferArr, done); 75 fs.writev(fd, bufferArr, done); 88 () => fs.writev(fd, i, null, common.mustNotCall()), { 101 () => fs.writev(i, common.mustNotCall()),
|
D | test-fs-write-stream-file-handle-2.js | 16 writev: originalWritevFunction 22 handle.writev = function writev() { function
|
D | test-pipe-writev.js | 18 const writev = connection._writev.bind(connection); constant 19 connection._writev = common.mustCall(writev);
|
D | test-fs-write-stream-fs.js | 29 writev: common.mustCallAtLeast(fs.writev, 1), property
|
D | test-fs-stream-fs-options.js | 22 if (fn === 'write') overrideFs.writev = null; 41 const overrideFs = Object.assign({}, originalFs.fs, { writev: 'not a fn' }); property
|
D | test-console-log-stdio-broken-dest.js | 12 writev(chunks, cb) { method
|
/third_party/node/benchmark/streams/ |
D | writable-manywrites.js | 9 writev: ['yes', 'no'], property 14 function main({ n, sync, writev, callback, len }) { property 26 if (writev === 'yes') {
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | writev.c | 39 ssize_t result = writev(STDOUT_FILENO, iov, 2); in writev_0100() 61 ssize_t result = writev(STDOUT_FILENO, iov, 2); in writev_0200() 74 ssize_t result = writev(-1, NULL, -1); in writev_0300()
|
/third_party/rust/crates/rustix/tests/io/ |
D | read_write.rs | 73 use rustix::io::{readv, writev, SeekFrom}; in test_readwrite_v() 85 writev(&foo, &[IoSlice::new(b"hello")]).unwrap(); in test_readwrite_v() 86 writev(&foo, &[IoSlice::new(b"world")]).unwrap(); in test_readwrite_v() 154 use rustix::io::{preadv2, pwritev2, writev, ReadWriteFlags, SeekFrom}; in test_pwritev2() 166 writev(&foo, &[IoSlice::new(b"hello")]).unwrap(); in test_pwritev2()
|
/third_party/node/lib/internal/fs/ |
D | streams.js | 105 writev: (fd, buffers, pos, cb) => { 106 PromisePrototypeThen(handle.writev(buffers, pos), 336 if (!this[kFs].write && !this[kFs].writev) { 345 if (this[kFs].writev) { 346 validateFunction(this[kFs].writev, 'options.fs.writev'); 357 if (!this[kFs].writev) { 427 this[kFs].writev(this.fd, chunks, this.pos, (er, bytesWritten, buffers) => {
|
/third_party/node/deps/npm/node_modules/tar/node_modules/fs-minipass/ |
D | index.js | 6 let writev = fs.writev variable 8 if (!writev) { 14 writev = (fd, iovec, pos, cb) => { function 360 writev(this[_fd], iovec, this[_pos],
|
/third_party/lwip/ |
D | 0035-add-writev-and-readv.patch | 4 Subject: [PATCH] add writev and readv 21 + CHECK_DLSYM_RET_RETURN(posix_api->writev_fn = dlsym(handle, "writev"));
|
/third_party/rust/crates/rustix/src/io/ |
D | read_write.rs | 108 pub fn writev<Fd: AsFd>(fd: Fd, bufs: &[IoSlice<'_>]) -> io::Result<usize> { in writev() function 109 backend::io::syscalls::writev(fd.as_fd(), bufs) in writev()
|
/third_party/node/deps/npm/node_modules/fs-minipass/lib/ |
D | index.js | 6 const writev = fs.writev constant 374 writev(this[_fd], iovec, this[_pos],
|
/third_party/musl/src/unistd/ |
D | writev.c | 4 ssize_t writev(int fd, const struct iovec *iov, int count) in writev() function
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 252 if (typeof options.writev === 'function') this._writev = options.writev; 385 function doWrite(stream, state, writev, len, chunk, encoding, cb) { argument 390 …if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._wri…
|
/third_party/musl/libc-test/src/api/ |
D | sys_uio.c | 14 {ssize_t(*p)(int,const struct iovec*,int) = writev;} in f()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/unistd_gtest/ |
D | unistd_writev_test.cpp | 31 EXPECT_EQ(iov[0].iov_len + iov[1].iov_len, writev(STDOUT_FILENO, iov, 2));
|
/third_party/musl/include/sys/ |
D | uio.h | 27 ssize_t writev (int, const struct iovec *, int);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | uio.h | 27 ssize_t writev (int, const struct iovec *, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | uio.h | 27 ssize_t writev (int, const struct iovec *, int);
|
/third_party/musl/ndk_musl_include/sys/ |
D | uio.h | 27 ssize_t writev (int, const struct iovec *, int);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | uio.h | 27 ssize_t writev (int, const struct iovec *, int);
|
/third_party/ltp/include/lapi/syscalls/ |
D | x86_64.in | 21 writev 20 357 writev 516
|