Lines Matching refs:wb_
1023 : wb_(handler->get_worker()->get_mcpool()),
1170 nghttp2_session_want_write(session_) == 0 && wb_.rleft() == 0) {
1219 if (wb_.rleft() >= max_buffer_size_) {
1234 wb_.append(data, datalen);
1238 nghttp2_session_want_write(session_) == 0 && wb_.rleft() == 0) {
2309 if (iovcnt == 0 || wb_.rleft() == 0) {
2313 return wb_.riovec(iov, iovcnt);
2316 void Http2Upstream::response_drain(size_t n) { wb_.drain(n); }
2318 bool Http2Upstream::response_empty() const { return wb_.rleft() == 0; }
2320 DefaultMemchunks *Http2Upstream::get_response_buf() { return &wb_; }