HomeSort by relevance Sort by last modified time
    Searched refs:Write (Results 101 - 125 of 322) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 71 result = Write(static_cast<const char*>(data) + total_written,
212 StreamResult StreamTap::Write(const void* data, size_t data_len,
218 StreamResult res = StreamAdapterInterface::Write(data, data_len,
332 StreamResult NullStream::Write(const void* data, size_t data_len,
410 StreamResult FileStream::Write(const void* data, size_t data_len,
580 StreamResult MemoryStreamBase::Write(const void* buffer, size_t bytes,
785 StreamResult FifoBuffer::Write(const void* buffer, size_t bytes,
846 // if empty, reset the write position to the beginning, so we can get
897 StreamResult LoggingAdapter::Write(const void* data, size_t data_len,
900 StreamResult result = StreamAdapterInterface::Write(data, data_len, written
    [all...]
socketstream.cc 96 StreamResult SocketStream::Write(const void* data, size_t data_len,
  /external/chromium/chrome/browser/importer/
profile_import_process_messages.h 31 static void Write(Message* m, const param_type& p) {
77 static void Write(Message* m, const param_type& p) {
132 static void Write(Message* m, const param_type& p) {
170 static void Write(Message* m, const param_type& p) {
196 static void Write(Message* m, const param_type& p) {
221 static void Write(Message* m, const param_type& p) {
249 static void Write(Message* m, const param_type& p) {
  /external/chromium/net/socket/
socks_client_socket.cc 193 // Write is called by the transport layer. This can only be done if the
195 int SOCKSClientSocket::Write(IOBuffer* buf, int buf_len,
201 return transport_->socket()->Write(buf, buf_len, callback);
334 return transport_->socket()->Write(handshake_buf_, handshake_buf_len,
342 // We ignore the case when result is 0, since the underlying Write
socks5_client_socket.cc 165 // Write is called by the transport layer. This can only be done if the
167 int SOCKS5ClientSocket::Write(IOBuffer* buf, int buf_len,
173 return transport_->socket()->Write(buf, buf_len, callback);
280 return transport_->socket()->Write(handshake_buf_, handshake_buf_len,
381 return transport_->socket()->Write(handshake_buf_, handshake_buf_len,
389 // We ignore the case when result is 0, since the underlying Write
ssl_client_socket_mac.h 67 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
122 // Used by Write function.
ssl_client_socket_openssl.h 81 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
129 // Used by Write function.
ssl_client_socket_win.h 72 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
128 // User function to callback when a Write() completes.
133 // Used to Read and Write using transport_.
tcp_client_socket_libevent.h 66 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
148 // Internal function to write to a socket.
171 // The buffer used by OnSocketReady to retry Write requests
178 // External callback; called when write is complete.
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_ContentPipe.h 114 CP_CheckBytesOutOfBuffers, /**< All read/write buffers are currently in use. */
176 /** Write data of the specified size to the content (advance content pointer by size of data).
178 CPresult (*Write)( CPhandle hContent, CPbyte *data, CPuint nSize);
180 /** Retrieve a buffer allocated by the pipe used to write data to the content.
185 /** Deliver a buffer obtained via GetWriteBuffer to the pipe. Pipe will write the
  /external/chromium/chrome/browser/debugger/
devtools_remote_service.cc 102 base::JSONWriter::Write(&response, false, &response_json);
  /external/chromium/chrome/browser/extensions/
extension_devtools_bridge.cc 43 base::JSONWriter::Write(&message, false, &json);
extension_idle_api.cc 152 base::JSONWriter::Write(&args, false, &json_args);
extension_proxy_api.cc 44 base::JSONWriter::Write(&args, false, &json_args);
  /external/chromium/chrome/browser/remoting/
directory_add_request.cc 46 base::JSONWriter::Write(&args, false, &request_content);
  /external/chromium/net/http/
http_proxy_client_socket.h 90 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
  /external/chromium/net/spdy/
spdy_proxy_client_socket.h 88 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
140 // Stores the callback to the layer above, called on completing Write().
  /external/chromium/net/tools/flip_server/
simple_buffer.cc 15 // internal implementation (e.g., Write) explicitly use SimpleBuffer:: to
85 int SimpleBuffer::Write(const char* bytes, int size) {
  /external/chromium/net/udp/
udp_socket_libevent.h 56 // Write to the socket.
59 int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
146 // instead of by reference. It is called from Write() with |address|
176 // The buffer used by InternalWrite() to retry Write requests
184 // External callback; called when write is complete.
udp_socket_win.h 58 // Write to the socket.
61 int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
134 // instead of by reference. It is called from Write() with |address|
155 // Watchers to watch for events from Read() and Write().
159 // OVERLAPPED for pending read and write operations.
169 // The buffer used by InternalWrite() to retry Write requests
175 // External callback; called when write is complete.
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunserver.cc 156 msg.Write(&buf);
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 72 virtual StreamResult Write(const void* data, size_t data_len,
278 StreamResult PseudoTcpChannel::Write(const void* data, size_t data_len,
572 StreamResult PseudoTcpChannel::InternalStream::Write(
579 return parent_->Write(data, data_len, written, error);
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.h 39 // streams. Of course, many users will probably want to write their own
254 // streams, and C++ iostreams) expose an interface where every write
260 // CopyingOutputStreamAdaptor does its own buffering and will write data
267 // if successful, false on a write error.
268 virtual bool Write(const void* buffer, int size) = 0;
272 // useful for implementing ZeroCopyOutputStreams that write to traditional
275 // If you want to write to file descriptors or C++ ostreams, this is
289 // write error occurred on the underlying stream. (The underlying
303 // Write the current buffer, if it is present.
  /external/v8/test/sputnik/
testcfg.py 55 self.tmpfile.Write(self.GetSource())
  /frameworks/base/include/media/stagefright/openmax/
OMX_ContentPipe.h 131 CP_CheckBytesOutOfBuffers, /**< All read/write buffers are currently in use. */
193 /** Write data of the specified size to the content (advance content pointer by size of data).
195 CPresult (*Write)( CPhandle hContent, CPbyte *data, CPuint nSize);
197 /** Retrieve a buffer allocated by the pipe used to write data to the content.
202 /** Deliver a buffer obtained via GetWriteBuffer to the pipe. Pipe will write the

Completed in 486 milliseconds

1 2 3 45 6 7 8 91011>>