Lines Matching refs:Connection
35 std::shared_ptr<http::Connection> Transport::CreateConnection(
42 std::shared_ptr<http::Connection> connection;
46 return connection;
57 connection =
58 std::make_shared<http::fake::Connection>(url, method, shared_from_this());
59 CHECK(connection) << "Unable to create Connection object";
60 if (!connection->SendHeaders(headers_copy, error))
61 connection.reset();
63 return connection;
92 http::Connection* /* connection */,