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];
281 ASSERT(extra <= impl_->inbuf.size());
282 size_t consumed = impl_->inbuf.size() - extra;
283 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra);
284 impl_->inbuf.resize(extra);
286 impl_->inbuf.clear();
292 return impl_->inbuf.empty() ? Flush() : ContinueSSL();
332 SChannelBuffer& inbuf = impl_->inbuf;
335 while (!inbuf.empty()) {
338 in_buf[0].cbBuffer = static_cast<unsigned long>(inbuf.size());
339 in_buf[0].pvBuffer = &inbuf[0];
360 if ((data_len == 0) && (inbuf[0] == 0x15)) {
364 size_t consumed = inbuf.size() - extra_len;
365 memmove(&inbuf[0], &inbuf[consumed], extra_len);
366 inbuf.resize(extra_len);
368 inbuf.clear();
430 SChannelBuffer& inbuf = impl_->inbuf;
434 inbuf.insert(inbuf.end(), buffer, buffer + ret);
655 if (impl_->inbuf.empty())