Lines Matching refs:Http2Client
45 Http2Client::ServiceStub::ServiceStub(const std::shared_ptr<Channel>& channel) in ServiceStub()
50 TestService::Stub* Http2Client::ServiceStub::Get() { return stub_.get(); } in Get()
52 Http2Client::Http2Client(const std::shared_ptr<Channel>& channel) in Http2Client() function in grpc::testing::Http2Client
57 bool Http2Client::AssertStatusCode(const Status& s, StatusCode expected_code) { in AssertStatusCode()
67 Status Http2Client::SendUnaryCall(SimpleResponse* response) { in SendUnaryCall()
72 SimpleRequest Http2Client::BuildDefaultRequest() { in BuildDefaultRequest()
80 bool Http2Client::DoRstAfterHeader() { in DoRstAfterHeader()
91 bool Http2Client::DoRstAfterData() { in DoRstAfterData()
102 bool Http2Client::DoRstDuringData() { in DoRstDuringData()
113 bool Http2Client::DoGoaway() { in DoGoaway()
133 bool Http2Client::DoPing() { in DoPing()
143 void Http2Client::MaxStreamsWorker( in MaxStreamsWorker()
151 bool Http2Client::DoMaxStreams() { in DoMaxStreams()
165 std::thread(&Http2Client::MaxStreamsWorker, this, channel_)); in DoMaxStreams()
201 grpc::testing::Http2Client client(channel); in main()