Home | History | Annotate | Download | only in base

Lines Matching defs:inbuf

102   SChannelBuffer inbuf, outbuf, readable;
213 sb_in[0].cbBuffer = static_cast<unsigned long>(impl_->inbuf.size());
214 sb_in[0].pvBuffer = &impl_->inbuf[0];
284 ASSERT(extra <= impl_->inbuf.size());
285 size_t consumed = impl_->inbuf.size() - extra;
286 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra);
287 impl_->inbuf.resize(extra);
289 impl_->inbuf.clear();
295 return impl_->inbuf.empty() ? Flush() : ContinueSSL();
335 SChannelBuffer& inbuf = impl_->inbuf;
338 while (!inbuf.empty()) {
341 in_buf[0].cbBuffer = static_cast<unsigned long>(inbuf.size());
342 in_buf[0].pvBuffer = &inbuf[0];
363 if ((data_len == 0) && (inbuf[0] == 0x15)) {
367 size_t consumed = inbuf.size() - extra_len;
368 memmove(&inbuf[0], &inbuf[consumed], extra_len);
369 inbuf.resize(extra_len);
371 inbuf.clear();
433 SChannelBuffer& inbuf = impl_->inbuf;
437 inbuf.insert(inbuf.end(), buffer, buffer + ret);
658 if (impl_->inbuf.empty())