OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frame_chunks
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/websockets/
websocket_frame_parser.h
31
// |
frame_chunks
|.
41
ScopedVector<WebSocketFrameChunk>*
frame_chunks
);
websocket_stream.h
96
// |
frame_chunks
| remains owned by the caller and must be valid until the
97
// operation completes or Close() is called. |
frame_chunks
| must be empty on
105
//
frame_chunks
->size() >= 1 if the result is OK.
108
// |
frame_chunks
|. If the currently available bytes of a new frame do not form
127
virtual int ReadFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
130
// Writes WebSocket frame data. |
frame_chunks
| must obey the rule specified
135
// match |header->payload_length|). |
frame_chunks
| must be valid until the
146
virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
150
// at this point, so |
frame_chunks
| can be freed.
websocket_channel_test.cc
173
virtual int ReadFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
178
virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
462
virtual int ReadFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
473
frame_chunks
,
477
frame_chunks
->swap(responses_[index_]->chunks);
483
void DoCallback(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
486
frame_chunks
->swap(responses_[index_]->chunks);
519
virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
528
virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
544
virtual int WriteFrames(ScopedVector<WebSocketFrameChunk>*
frame_chunks
,
1586
ScopedVector<WebSocketFrameChunk>*
frame_chunks
= NULL;
local
1803
ScopedVector<WebSocketFrameChunk>*
frame_chunks
= NULL;
local
[
all
...]
websocket_frame_parser.cc
50
ScopedVector<WebSocketFrameChunk>*
frame_chunks
) {
75
frame_chunks
->push_back(frame_chunk.release());
/external/chromium_org/chrome/test/chromedriver/net/
websocket.cc
195
ScopedVector<net::WebSocketFrameChunk>
frame_chunks
;
local
196
CHECK(parser_.Decode(data, len, &
frame_chunks
));
197
for (size_t i = 0; i <
frame_chunks
.size(); ++i) {
198
scoped_refptr<net::IOBufferWithSize> buffer =
frame_chunks
[i]->data;
201
if (
frame_chunks
[i]->final_chunk) {
Completed in 121 milliseconds