HomeSort by relevance Sort by last modified time
    Searched refs:WriteFrames (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/websockets/
websocket_stream.h 138 // This function should not be called while previous call of WriteFrames() is
146 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
websocket_channel_test.cc 178 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
519 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
528 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
538 // callback. The test must do something to cause WriteFrames() to be called,
544 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
547 // called from within WriteFrames(), so post it to the message loop instead.
615 virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>* frame_chunks,
641 MOCK_METHOD2(WriteFrames,
    [all...]
websocket_channel.h 145 // Calls WebSocketStream::WriteFrames() with the appropriate arguments
146 void WriteFrames();
148 // Callback from WebSocketStream::WriteFrames. Sends pending data or adjusts
151 // being called from within the WriteFrames() loop and does not need to call
152 // WriteFrames() itself.
websocket_channel.cc 62 // The frames_ that will be sent in the next call to WriteFrames().
256 void WebSocketChannel::WriteFrames() {
261 result = stream_->WriteFrames(
281 WriteFrames();
306 << "WriteFrames() should only return OK or ERR_ codes";
612 WriteFrames();

Completed in 156 milliseconds