HomeSort by relevance Sort by last modified time
    Searched defs:Write (Results 251 - 275 of 374) sorted by null

<<1112131415

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 106 ostream &Write(ostream &strm) const;
239 inline ostream &StringWeight<L, S>::Write(ostream &strm) const {
symbol-table.h 64 bool Write(ostream &strm) const;
253 bool Write(ostream &strm) const {
254 return impl_->Write(strm);
257 bool Write(const string& filename) const {
260 LOG(ERROR) << "SymbolTable::Write: Can't open file " << filename;
263 return Write(strm);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 105 if (!Write(kHeader) ||
145 Write(kFolderChildrenEnd);
146 Write(kNewline);
196 bool Write(const std::string& text) {
207 bool Write(const std::string& text, TextType type) {
226 return Write(utf8_string);
231 return Write(indent_);
239 return Write(base::Int64ToString(
276 !Write(kBookmarkStart) ||
277 !Write(url_string, ATTRIBUTE_VALUE) |
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
canned_syncable_file_system.cc 463 int64 CannedSyncableFileSystem::Write(
687 operation_runner()->Write(url_request_context, url,
702 operation_runner()->Write(url_request_context, url,
  /external/chromium_org/chrome/installer/util/
channel_info.cc 149 bool ChannelInfo::Write(RegKey* key) const {
  /external/chromium_org/content/browser/tracing/
tracing_controller_impl.cc 44 void Write(const scoped_refptr<base::RefCountedString>& events_str_ptr) {
806 result_file_->Write(events_str_ptr);
819 monitoring_snapshot_file_->Write(events_str_ptr);
  /external/chromium_org/content/child/fileapi/
file_system_dispatcher.cc 295 void FileSystemDispatcher::Write(
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs_node.cc 196 Error HttpFsNode::Write(const HandleAttr& attr,
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_html5_fs.cc 98 int32_t FakeHtml5FsNode::Write(int64_t offset,
114 return Write(contents_.size(), buffer, bytes_to_write);
385 int32_t FakeFileIoInterface::Write(PP_Resource file_io,
408 result = file_io_resource->node->Write(offset, buffer, bytes_to_write);
  /external/chromium_org/net/socket/
ssl_client_socket_openssl.cc 618 int SSLClientSocketOpenSSL::Write(IOBuffer* buf,
777 // Since Run may result in Write being called, clear |user_write_callback_|
789 // Read and write as much data as possible. The loop is necessary because
790 // Write() may return synchronously.
    [all...]
ssl_server_socket_nss.cc 221 int SSLServerSocketNSS::Write(IOBuffer* buf, int buf_len,
567 rv = transport_socket_->Write(
635 // Read and write as much data as we can. The loop is neccessary
636 // because Write() may return synchronously.
ssl_server_socket_openssl.cc 155 int SSLServerSocketOpenSSL::Write(IOBuffer* buf, int buf_len,
309 return 0; // Nothing pending in the OpenSSL write BIO.
316 int rv = transport_socket_->Write(
338 // Got a socket write error; close the BIO to indicate this upward.
347 // from the socket after a write error.
349 // TODO(davidben): Avoid having read and write ends interact this way.
418 // Mirror transport write errors as read failures; transport_bio_ has been
425 // A write into a memory BIO should always succeed.
439 // Read and write as much data as possible. The loop is necessary because
440 // Write() may return synchronously
    [all...]
ssl_server_socket_unittest.cc 76 int Write(IOBuffer* buf, int buf_len, const CompletionCallback& callback) {
95 // indicating EOF, and Write() fails with ERR_CONNECTION_RESET. Note that
96 // after the FakeDataChannel is closed, the first Write() call completes
146 // Controls the completion of Write() after the FakeDataChannel is closed.
147 // After the FakeDataChannel is closed, the first Write() call completes
174 virtual int Write(IOBuffer* buf, int buf_len,
176 // Write random number of bytes.
178 return outgoing_->Write(buf, buf_len, callback);
270 // Write then read.
272 server.Write(write_buf.get(), kTestDataSize, CompletionCallback())
    [all...]
tcp_socket_libevent.cc 389 int TCPSocketLibevent::Write(IOBuffer* buf,
418 DVLOG(1) << "WatchFileDescriptor failed on write, errno " << errno;
752 bytes_transferred = HANDLE_EINTR(write(socket_, write_buf_->data(),
864 nwrite = HANDLE_EINTR(write(socket_, buf->data(), buf_len));
  /external/chromium_org/net/udp/
udp_socket_libevent.cc 97 // Zero out any pending read/write callback state.
198 int UDPSocketLibevent::Write(IOBuffer* buf,
228 DVLOG(1) << "WatchFileDescriptor failed on write, errno " << errno;
374 // since Run may result in Write being called, clear write_callback_ up front.
  /external/chromium_org/ppapi/proxy/
raw_var_data.cc 176 void RawVarDataGraph::Write(IPC::Message* m,
178 // Write the size, followed by each node in the graph.
182 data_[i]->Write(m, handle_writer);
286 void BasicRawVarData::Write(
302 IPC::ParamTraits<double>::Write(m, var_.value.as_double);
380 void StringRawVarData::Write(IPC::Message* m,
485 void ArrayBufferRawVarData::Write(
576 void ArrayRawVarData::Write(IPC::Message* m,
639 void DictionaryRawVarData::Write(
716 void ResourceRawVarData::Write(IPC::Message* m
    [all...]
  /external/chromium_org/remoting/protocol/
channel_multiplexer.cc 116 virtual int Write(net::IOBuffer* buffer, int buffer_len,
299 int ChannelMultiplexer::MuxSocket::Write(
313 // Cannot complete the write, e.g. if the connection has been terminated.
515 return writer_.Write(SerializeAndFrameMessage(*packet), done_task);
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_sqlite3.cc 15 // fillseq -- write N values in sequential key order in async mode
16 // fillseqsync -- write N/100 values in sequential key order in sync mode
17 // fillseqbatch -- batch write N values in sequential key order in async mode
18 // fillrandom -- write N values in random key order in async mode
19 // fillrandsync -- write N/100 values in random key order in sync mode
20 // fillrandbatch -- batch write N values in sequential key order in async mode
22 // fillrand100K -- write N/1000 100K values in random order in async mode
23 // fillseq100K -- write N/1000 100K values in sequential order in async mode
75 // If true, we enable Write-Ahead Logging
127 // large enough to serve all typical value sizes we want to write
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpbase.cc 332 virtual StreamResult Write(const void* data, size_t data_len,
608 // write.
675 // No more data to read, and no more data to write.
701 StreamResult result = http_stream_->Write(buffer_, len_, &written, &error);
738 // Not enough room for the next header, write to network first.
874 switch (data_->document->Write(data, len, &read, &write_error)) {
885 LOG_F(LS_ERROR) << "Write error: " << write_error;
opensslstreamadapter.cc 150 StreamResult result = stream->Write(in, inl, &written, &error);
351 StreamResult OpenSSLStreamAdapter::Write(const void* data, size_t data_len,
353 LOG(LS_VERBOSE) << "OpenSSLStreamAdapter::Write(" << data_len << ")";
358 return StreamAdapterInterface::Write(data, data_len, written, error);
375 // OpenSSL will return an error if we try to write zero bytes
398 LOG(LS_VERBOSE) << " -- error want write";
471 LOG(LS_VERBOSE) << " -- error want write";
674 LOG(LS_VERBOSE) << " -- error want write";
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvoiceengine.h 74 virtual bool Write(const void *buf, int len) {
  /external/chromium_org/third_party/lzma_sdk/
Types.h 134 void (*Write)(void *p, Byte b);
151 size_t (*Write)(void *p, const void *buf, size_t size);
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
Types.h 135 void (*Write)(void *p, Byte b);
152 size_t (*Write)(void *p, const void *buf, size_t size);
  /external/chromium_org/third_party/webrtc/base/
httpbase.cc 312 virtual StreamResult Write(const void* data, size_t data_len,
588 // write.
655 // No more data to read, and no more data to write.
681 StreamResult result = http_stream_->Write(buffer_, len_, &written, &error);
718 // Not enough room for the next header, write to network first.
854 switch (data_->document->Write(data, len, &read, &write_error)) {
865 LOG_F(LS_ERROR) << "Write error: " << write_error;
opensslstreamadapter.cc 133 StreamResult result = stream->Write(in, inl, &written, &error);
334 StreamResult OpenSSLStreamAdapter::Write(const void* data, size_t data_len,
336 LOG(LS_VERBOSE) << "OpenSSLStreamAdapter::Write(" << data_len << ")";
341 return StreamAdapterInterface::Write(data, data_len, written, error);
358 // OpenSSL will return an error if we try to write zero bytes
381 LOG(LS_VERBOSE) << " -- error want write";
454 LOG(LS_VERBOSE) << " -- error want write";
657 LOG(LS_VERBOSE) << " -- error want write";

Completed in 857 milliseconds

<<1112131415