OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WriteFrames
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/net/websockets/
websocket_stream.h
135
// This function must not be called while a previous call of
WriteFrames
() is
142
// object. Implementations of
WriteFrames
() should be robust against
145
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
websocket_deflate_stream.h
29
// WebSocketDeflateStream::ReadFrames and
WriteFrames
may change frame
50
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
websocket_deflate_stream_test.cc
99
MOCK_METHOD2(
WriteFrames
, int(ScopedVector<WebSocketFrame>*,
107
// - RecordInputDataFrame is called after the corresponding
WriteFrames
189
//
WriteFrames
fails.
289
// WriteFramesStub is a stub for WebSocketStream::
WriteFrames
.
894
EXPECT_CALL(*mock_stream_,
WriteFrames
(&frames, _)).Times(0);
896
EXPECT_EQ(OK, deflate_stream_->
WriteFrames
(&frames, callback));
904
EXPECT_CALL(*mock_stream_,
WriteFrames
(&frames, _))
910
EXPECT_EQ(ERR_FAILED, deflate_stream_->
WriteFrames
(&frames, callback));
922
EXPECT_CALL(*mock_stream_,
WriteFrames
(_, _))
925
ASSERT_EQ(OK, deflate_stream_->
WriteFrames
(&frames, callback))
[
all
...]
websocket_basic_stream.h
49
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
websocket_channel_test.cc
192
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
500
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
509
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
519
// callback. The test must do something to cause
WriteFrames
() to be called,
525
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
528
// called from within
WriteFrames
(), so post it to the message loop instead.
598
virtual int
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
643
MOCK_METHOD2(
WriteFrames
,
[
all
...]
websocket_channel.cc
89
// The frames_ that will be sent in the next call to
WriteFrames
().
323
ChannelState WebSocketChannel::
WriteFrames
() {
328
result = stream_->
WriteFrames
(
351
return
WriteFrames
();
375
<< "
WriteFrames
() should only return OK or ERR_ codes";
611
return
WriteFrames
();
websocket_channel.h
161
// Calls WebSocketStream::
WriteFrames
() with the appropriate arguments
162
ChannelState
WriteFrames
() WARN_UNUSED_RESULT;
164
// Callback from WebSocketStream::
WriteFrames
. Sends pending data or adjusts
167
// being called from within the
WriteFrames
() loop and does not need to call
168
//
WriteFrames
() itself.
websocket_deflate_stream.cc
69
int WebSocketDeflateStream::
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
76
return stream_->
WriteFrames
(frames, callback);
websocket_basic_stream_test.cc
[
all
...]
websocket_basic_stream.cc
135
int WebSocketBasicStream::
WriteFrames
(ScopedVector<WebSocketFrame>* frames,
Completed in 194 milliseconds