Home
last modified time | relevance | path

Searched refs:GenericStub (Results 1 – 14 of 14) sorted by relevance

/third_party/grpc/test/cpp/qps/
Dclient_async.cc772 grpc::GenericStub* stub, const ByteBuffer& req, in ClientRpcContextGenericStreamingImpl()
775 grpc::GenericStub*, grpc::ClientContext*, in ClientRpcContextGenericStreamingImpl()
858 grpc::GenericStub* stub_;
877 grpc::GenericStub*, grpc::ClientContext*, const std::string&,
900 static std::unique_ptr<grpc::GenericStub> GenericStubCreator( in GenericStubCreator()
902 return std::unique_ptr<grpc::GenericStub>(new grpc::GenericStub(ch)); in GenericStubCreator()
906 : public AsyncClient<grpc::GenericStub, ByteBuffer> {
909 : AsyncClient<grpc::GenericStub, ByteBuffer>(config, SetupCtx, in GenericAsyncStreamingClient()
919 grpc::GenericStub* stub, grpc::ClientContext* ctx, in PrepareReq()
924 static ClientRpcContext* SetupCtx(grpc::GenericStub* stub, in SetupCtx()
/third_party/grpc/examples/cpp/helloworld/cocoapods/HelloWorldCpp/
DViewController.mm36 std::unique_ptr<grpc::GenericStub> generic_stub_;
45 generic_stub_.reset(new grpc::GenericStub(channel));
/third_party/grpc/src/python/grpcio_tests/tests_aio/benchmark/
Dbenchmark_client.py31 class GenericStub(object): class
83 self._stub = GenericStub(self._channel)
/third_party/grpc/test/cpp/util/
Dcli_call.h88 std::unique_ptr<grpc::GenericStub> stub_;
Dcli_call.cc55 : stub_(new grpc::GenericStub(channel)) { in CliCall()
/third_party/grpc/src/python/grpcio_tests/tests/qps/
Dbenchmark_client.py32 class GenericStub(object): class
73 self._stub = GenericStub(channel)
/third_party/grpc/test/cpp/end2end/
Dfilter_end2end_test.cc162 generic_stub_.reset(new GenericStub(channel)); in ResetStub()
237 std::unique_ptr<grpc::GenericStub> generic_stub_;
Dgeneric_end2end_test.cc101 generic_stub_.reset(new GenericStub(channel)); in ResetStub()
245 std::unique_ptr<grpc::GenericStub> generic_stub_;
Dclient_callback_end2end_test.cc151 generic_stub_.reset(new GenericStub(channel_)); in ResetStub()
359 std::unique_ptr<grpc::GenericStub> generic_stub_;
854 UnaryClient(grpc::GenericStub* stub, const std::string& method_name) { in TEST_P()
Dserver_interceptors_end2end_test.cc522 GenericStub generic_stub(channel); in TEST_F()
/third_party/grpc/test/cpp/cocoapods/generic/
Dgeneric.mm96 std::unique_ptr<GenericStub> generic_stub_;
159 generic_stub_.reset(new GenericStub(channel));
/third_party/grpc/include/grpcpp/generic/
Dgeneric_stub.h210 typedef TemplatedGenericStub<grpc::ByteBuffer, grpc::ByteBuffer> GenericStub; typedef
/third_party/grpc/src/python/grpcio/grpc/framework/interfaces/face/
Dface.py691 class GenericStub(six.with_metaclass(abc.ABCMeta)): class
/third_party/grpc/src/python/grpcio/grpc/beta/
D_client_adaptations.py430 class _GenericStub(face.GenericStub):