Lines Matching defs:Request

58 class BHttpSession::Request
61 Request(BHttpRequest&& request, BBorrow<BDataIO> target, BMessenger observer);
63 Request(Request& original, const Redirect& redirect);
95 // Request state/events
141 std::vector<BHttpSession::Request> GetRequestsForControlThread();
155 std::list<BHttpSession::Request> fControlQueue;
156 std::deque<BHttpSession::Request> fDataQueue;
168 std::map<int, BHttpSession::Request> connectionMap;
222 auto wRequest = Request(std::move(request), std::move(target), observer);
447 // Request is redirected, send back to the controlThread
512 if (it->second.State() == Request::InitialState)
514 else if (it->second.State() == Request::Connected)
545 std::vector<BHttpSession::Request>
548 std::vector<BHttpSession::Request> requests;
572 "Request is queued: too many active connections for host");
584 "Request is queued: maximum number of concurrent hosts");
654 // #pragma mark -- BHttpSession::Request (helpers)
655 BHttpSession::Request::Request(BHttpRequest&& request, BBorrow<BDataIO> target, BMessenger observer)
678 BHttpSession::Request::Request(Request& original, const BHttpSession::Redirect& redirect)
705 BHttpSession::Request::SetError(std::exception_ptr e)
726 BHttpSession::Request::GetHost() const
733 BHttpSession::Request::SetCounter(int32* counter) noexcept
743 BHttpSession::Request::ResolveHostName()
768 BHttpSession::Request::OpenConnection()
807 BHttpSession::Request::TransferRequest()
838 BHttpSession::Request::ReceiveResult()
1042 BHttpSession::Request::Disconnect() noexcept
1055 BHttpSession::Request::SendMessage(uint32 what, std::function<void(BMessage&)> dataFunc) const