Lines Matching refs:sendq_
134 clear_request(sendq_);
309 for (; !sendq_.empty();) {
375 for (; !sendq_.empty();) {
557 if (sendq_.empty() && recvq_.empty()) {
594 for (auto &req : sendq_) {
608 sendq_.clear();
638 auto &req = sendq_.front();
640 sendq_.pop_front();
655 recvq_.push_back(std::move(sendq_.front()));
656 sendq_.pop_front();
710 sendq_.push_back(std::move(req));
732 if (!connected_ || (recvq_.empty() && sendq_.empty())) {
750 q.reserve(recvq_.size() + sendq_.size());
754 << recvq_.size() + sendq_.size() << " request(s) again";
759 q.insert(std::end(q), std::make_move_iterator(std::begin(sendq_)),
760 std::make_move_iterator(std::end(sendq_)));
763 sendq_.clear();
767 sendq_.insert(std::end(sendq_), std::make_move_iterator(std::begin(q)),