Home | History | Annotate | Download | only in base

Lines Matching defs:outbuf

102   SChannelBuffer inbuf, outbuf, readable;
276 impl_->outbuf.insert(impl_->outbuf.end(),
450 SChannelBuffer& outbuf = impl_->outbuf;
451 while (pos < outbuf.size()) {
452 int sent = AsyncSocketAdapter::Send(&outbuf[pos], outbuf.size() - pos);
462 if (int remainder = outbuf.size() - pos) {
463 memmove(&outbuf[0], &outbuf[pos], remainder);
464 outbuf.resize(remainder);
466 outbuf.clear();
495 SChannelBuffer& outbuf = impl_->outbuf;
544 outbuf.insert(outbuf.end(), &message[0], &message[packet_len-1]+1);
687 if (!impl_->outbuf.empty())