Home | History | Annotate | Download | only in websockets

Lines Matching defs:frame_chunks

101     ScopedVector<WebSocketFrameChunk> frame_chunks;
104 &frame_chunks))
106 if (!frame_chunks.empty()) {
107 int result = ConvertChunksToFrames(&frame_chunks, frames);
247 ScopedVector<WebSocketFrameChunk> frame_chunks;
248 if (!parser_.Decode(read_buffer_->data(), result, &frame_chunks))
250 if (frame_chunks.empty())
252 return ConvertChunksToFrames(&frame_chunks, frames);
256 ScopedVector<WebSocketFrameChunk>* frame_chunks,
258 for (size_t i = 0; i < frame_chunks->size(); ++i) {
261 scoped_ptr<WebSocketFrameChunk>((*frame_chunks)[i]), &frame);
262 (*frame_chunks)[i] = NULL;
268 // All the elements of |frame_chunks| are now NULL, so there is no point in
270 frame_chunks->weak_clear();