Lines Matching defs:avail
764 int avail = read;
766 uv_buf_t buf = EmitAlloc(avail);
767 if (static_cast<int>(buf.len) < avail)
768 avail = buf.len;
769 memcpy(buf.base, current, avail);
770 EmitRead(avail, buf);
780 read -= avail;
781 current += avail;
1129 size_t avail = 0;
1130 uint8_t* data = reinterpret_cast<uint8_t*>(enc_in->Peek(&avail));
1131 CHECK_IMPLIES(data == nullptr, avail == 0);
1132 Debug(this, "Passing %zu bytes to the hello parser", avail);
1133 return hello_parser_.Parse(data, avail);