Home
last modified time | relevance | path

Searched refs:write (Results 1751 - 1775 of 3634) sorted by relevance

1...<<71727374757677787980>>...146

/third_party/python/Lib/test/
H A Dtest_platform.py407 fp.write(b'[xxx%sxxx]' % data)
419 f.write(b'x'*(chunksize - 10))
420 f.write(b'GLIBC_1.23.4\0GLIBC_1.9\0GLIBC_1.21\0')
/third_party/python/Lib/xml/sax/
H A Dsaxutils.py96 # IOBase hierarchy, but just have a write method
99 buffer.write = out.write
117 self._write = out.write
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H A Dsyscalls.rs168 pub(crate) fn write(fd: BorrowedFd<'_>, buf: &[u8]) -> io::Result<usize> {
357 let (mut read, mut write) = crate::fs::fd::_is_file_read_write(fd)?;
381 if write && !not_socket {
383 // the write side is shut down.
390 Err(io::Errno::PIPE) => write = false,
395 Ok((read, write))
/third_party/vk-gl-cts/scripts/
H A Dmustpass.py303 parentFile.write(mainGroupSubDir + "/" + testFilePath + "\n")
385 currentOutputFile.write(caseName + "\n")
387 mainDstFile.write(caseName + "\n")
/third_party/zlib/examples/
H A Dgzappend.c41 * (Why you ask? Because it was fun to write!)
257 descriptor pointing to where to write the compressed data -- the deflate
359 if (write(gz.fd, gz.buf, 1) != 1) bye("writing after seek to ", name); in gzscan()
422 /* compress and write all available output */ in gztack()
429 len = write(gd, out + CHUNK - strm->avail_out - left, left); in gztack()
436 /* write trailer after last entry */ in gztack()
449 ret = write(gd, out + 8 - len, len); in gztack()
/third_party/json/tools/cpplint/
H A Dcpplint.py1362 sys.stdout.write(message)
1368 sys.stderr.write(message)
1716 sys.stderr.write('%s:%s: warning: %s [%s] [%d]\n' % (
1723 sys.stdout.write(_cpplint_state.output_format + " -i '%s%s' %s # %s [%s] [%d]\n" % (
1726 sys.stderr.write('# %s:%s: "%s" [%s] [%d]\n' % (
1731 sys.stderr.write(final_message)
2316 sys.stderr.write("\n_root fixup, _root = '%s', repository name = '%s'\n"
2322 sys.stderr.write("_root unspecified\n")
2338 sys.stderr.write(("_root lstrip (maybe_path=%s, file_path_from_root=%s," +
2353 sys.stderr.write(("_roo
[all...]
/third_party/node/src/
H A Dnode_http2.cc68 // The Http2Scope object is used to queue a write to the i/o stream. It is
85 // a write is already scheduled, there's nothing to do. in Http2Scope()
1230 // If we are currently waiting for a write operation to finish, we should in OnDataChunkReceived()
1583 Debug(this, "write finished with status %d", status); in OnStreamAfterWrite()
1615 // Schedule a new write if nghttp2 wants to send data. in OnStreamAfterWrite()
1623 // queue), but only if a write has not already been scheduled.
1631 Debug(this, "scheduling write"); in MaybeScheduleWrite()
1682 // out with the error from the write to the underlying protocol, in ClearOutgoing()
1705 void Http2Session::PushOutgoingBuffer(NgHttp2StreamWrite&& write) { in PushOutgoingBuffer() argument
1706 outgoing_length_ += write in PushOutgoingBuffer()
1842 NgHttp2StreamWrite& write = stream->queue_.front(); OnSendData() local
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dvideodsp_armv5te.S18 @ License along with FFmpeg; if not, write to the Free Software
/third_party/elfutils/tests/
H A Darextract.c105 /* Now write out the data. */ in main()
114 if (write (outfd, buf, n) != n) in main()
/third_party/elfio/examples/anonymizer/
H A Danonymizer.cpp62 file.write( data.c_str(), data.length() + 1 ); in overwrite_data()
/third_party/ffmpeg/libavdevice/
H A Doss_enc.c18 * License along with FFmpeg; if not, write to the Free Software
68 ret = write(s->fd, s->buffer, OSS_AUDIO_BLOCK_SIZE); in audio_write_packet()
/third_party/gn/src/gn/
H A Dfile_writer.cc29 // checking for the read) when the write happens immediately after. This in Create()
102 ssize_t written = HANDLE_EINTR(::write(fd_.get(), str.data(), str.size())); in Write()
/third_party/ffmpeg/libavutil/x86/
H A Demms.asm17 ;* License along with FFmpeg; if not, write to the Free Software
/third_party/alsa-lib/src/rawmidi/
H A Drawmidi_local.h17 * License along with this library; if not, write to the Free Software
35 ssize_t (*write)(snd_rawmidi_t *rawmidi, const void *buffer, size_t size); member
/third_party/backends/tools/
H A Dmustek600iin-off.c158 || (write (pfd, offcmd, 1) != 1)) in main()
/third_party/googletest/googletest/scripts/
H A Drelease_docs.py145 file(versioned_file, 'w').write(new_text)
/third_party/gptfdisk/
H A Dsgdisk.cc80 write(stdout, resString.c_str(), resString.length()); in ohos_dump()
/third_party/NuttX/drivers/bch/
H A Dbchlib_setup.c93 if (!readonly && (!bops->write || !geo.geo_writeenabled)) in bchlib_setup()
95 PRINTK("ERROR: write access not supported\n"); in bchlib_setup()
/third_party/NuttX/fs/nfs/
H A Dnfs_mount.h70 #define NFSMNT_WSIZE (1 << 1) /* Set write size */
101 uint16_t nm_wsize; /* Max size of write RPC */
109 * that for the case of the write call message, it is the reply message that
128 struct rpc_reply_write write; member
157 uint16_t wsize; /* Max size of write RPC */
/third_party/NuttX/fs/vfs/
H A Dfs_sendfile.c80 * There error values are those returned by read() or write() plus:
188 nbyteswritten = write(outfd, wrbuffer, nbytesread); in sendfile()
190 /* Check for a complete (or parial) write. write() should not in sendfile()
/third_party/libwebsockets/include/
H A Dlibwebsockets.hxx141 lws_ss_state_return_t write(const uint8_t *buf, size_t len, int flags);
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/buildtools/
H A DJarPhonePrefixDataIOHandler.java87 jarOutputStream.write(buffer, 0, read); in addFileToOutput()
/third_party/mbedtls/scripts/
H A Decp_comb_table.py174 srcfile.write(src)
/third_party/mesa3d/ohos/
H A DmodifyDtsi.py41 fp.write(s)
/third_party/mbedtls/tests/scripts/
H A Dgenerate_server9_bad_saltlen.py83 f.write(pem.armor('CERTIFICATE', target_certificate.dump()))

Completed in 16 milliseconds

1...<<71727374757677787980>>...146