HomeSort by relevance Sort by last modified time
    Searched refs:WriteAll (Results 1 - 25 of 30) sorted by null

1 2

  /external/bsdiff/
buffer_file.cc 36 if (!WriteAll(file_, buffer_.data(), buffer_.size()))
bspatch.cc 76 if (!WriteAll(file, buf, bytes_to_output)) {
77 PLOG(ERROR) << "WriteAll() failed.";
101 bool WriteAll(const std::unique_ptr<FileInterface>& file,
323 if (!WriteAll(new_file, new_buf.data(), read_bytes)) {
  /external/bsdiff/include/bsdiff/
bspatch.h 47 bool WriteAll(const std::unique_ptr<FileInterface>& file,
  /external/webrtc/webrtc/base/
logsinks.cc 43 stream_->WriteAll(message.c_str(), message.size(), nullptr, nullptr);
optionsfile.cc 78 res = stream.WriteAll(i->first.c_str(), i->first.length(), &written,
83 res = stream.WriteAll("=", 1, &written, &error);
87 res = stream.WriteAll(i->second.c_str(), i->second.length(), &written,
92 res = stream.WriteAll("\n", 1, &written, &error);
filerotatingstream_unittest.cc 50 EXPECT_EQ(SR_SUCCESS, stream_->WriteAll(data, data_len, nullptr, nullptr));
209 EXPECT_EQ(SR_SUCCESS, stream_->WriteAll(data, data_len, nullptr, nullptr));
273 stream_->WriteAll(buffer.get(), buffer_size, nullptr, nullptr));
300 stream_->WriteAll(buffer.get(), buffer_size, nullptr, nullptr));
logging_unittest.cc 32 static_cast<Base*>(this)->WriteAll(
stream.cc 44 StreamResult StreamInterface::WriteAll(const void* data, size_t data_len,
275 tap_result_ = tap_->WriteAll(buffer, *read, NULL, &tap_error_);
289 tap_result_ = tap_->WriteAll(data, *written, NULL, &tap_error_);
stream.h 205 // WriteAll is a helper function which repeatedly calls Write until all the
210 StreamResult WriteAll(const void* data, size_t data_len,
  /system/update_engine/payload_consumer/
extent_writer.cc 53 utils::WriteAll(fd_, c_bytes + bytes_written, bytes_to_write));
xz_extent_writer_unittest.cc 89 void WriteAll(const brillo::Blob& compressed) {
116 WriteAll(brillo::Blob(std::begin(kCompressedDataNoCheck),
122 WriteAll(brillo::Blob(std::begin(kCompressedDataCRC32),
130 WriteAll(brillo::Blob(std::begin(kCompressed30KiBofA),
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 19 // changed to customize the details before the first call to Write or WriteAll.
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
113 func (w *Writer) WriteAll(records [][]string) error {
writer_test.go 49 err := f.WriteAll(tt.Input)
example_test.go 121 w.WriteAll(records) // calls Flush internally
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 19 // changed to customize the details before the first call to Write or WriteAll.
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
113 func (w *Writer) WriteAll(records [][]string) error {
writer_test.go 49 err := f.WriteAll(tt.Input)
example_test.go 121 w.WriteAll(records) // calls Flush internally
  /external/webrtc/talk/media/base/
rtpdump_unittest.cc 94 stream.WriteAll(new_line, strlen(new_line), NULL, NULL));
103 stream.WriteAll(new_line2, strlen(new_line2), NULL, NULL));
112 stream.WriteAll(new_line3, strlen(new_line3), NULL, NULL));
rtpdump.cc 417 stream_->WriteAll(data, data_len, NULL, NULL);
  /system/update_engine/
hardware_android.cc 88 if (!utils::WriteAll(fd, &boot, boot_size)) {
  /system/update_engine/common/
utils.h 69 bool WriteAll(int fd, const void* buf, size_t count);
72 bool WriteAll(const FileDescriptorPtr& fd, const void* buf, size_t count);
utils.cc 194 return WriteAll(fd, data, data_len);
226 bool WriteAll(int fd, const void* buf, size_t count) {
257 bool WriteAll(const FileDescriptorPtr& fd, const void* buf, size_t count) {
274 return WriteAll(fd, buf, count);
    [all...]
  /frameworks/base/tools/aapt2/util/
Util.h 205 bool WriteAll(std::ostream& out, const BigBuffer& buffer);
  /external/boringssl/src/ssl/test/
bssl_shim.cc     [all...]
  /external/webrtc/webrtc/p2p/base/
dtlstransportchannel.cc 373 return (dtls_->WriteAll(data, size, NULL, NULL) == rtc::SR_SUCCESS)

Completed in 405 milliseconds

1 2