Home
last modified time | relevance | path

Searched defs:TestService (Results 1 – 23 of 23) sorted by relevance

/third_party/grpc/src/objective-c/examples/RemoteTestClient/
Dtest.proto28 service TestService { service
30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty);
33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
37 rpc StreamingOutputCall(StreamingOutputCallRequest)
42 rpc StreamingInputCall(stream StreamingInputCallRequest)
48 rpc FullDuplexCall(stream StreamingOutputCallRequest)
55 rpc HalfDuplexCall(stream StreamingOutputCallRequest)
/third_party/grpc/src/objective-c/tests/RemoteTestClient/
Dtest.proto28 service TestService { service
30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty);
33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
37 rpc StreamingOutputCall(StreamingOutputCallRequest)
42 rpc StreamingInputCall(stream StreamingInputCallRequest)
48 rpc FullDuplexCall(stream StreamingOutputCallRequest)
55 rpc HalfDuplexCall(stream StreamingOutputCallRequest)
/third_party/grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/service/
Dtest_service.proto22 service TestService { service
25 rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
29 rpc StreamingOutputCall(StreamingOutputCallRequest)
34 rpc StreamingInputCall(stream StreamingInputCallRequest)
40 rpc FullDuplexCall(stream StreamingOutputCallRequest)
47 rpc HalfDuplexCall(stream StreamingOutputCallRequest)
/third_party/grpc/src/proto/grpc/testing/
Dtest.proto28 service TestService { service
30 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty);
33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
38 rpc CacheableUnaryCall(SimpleRequest) returns (SimpleResponse);
42 rpc StreamingOutputCall(StreamingOutputCallRequest)
47 rpc StreamingInputCall(stream StreamingInputCallRequest)
53 rpc FullDuplexCall(stream StreamingOutputCallRequest)
60 rpc HalfDuplexCall(stream StreamingOutputCallRequest)
65 rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty);
/third_party/grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/invocation_testing/split_services/
Dservices.proto21 service TestService { service
22 rpc Call(Request) returns (Response);
/third_party/grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/invocation_testing/
Dsame.proto22 service TestService { service
23 rpc Call(Request) returns (Response);
/third_party/grpc/src/ruby/spec/pb/codegen/grpc/testing/
Dpackage_options.proto26 service TestService { service
27 rpc GetTest(TestRequest) returns (TestResponse) { }
/third_party/protobuf/python/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest_no_generic_services.proto50 service TestService { service
51 rpc Foo(TestMessage) returns(TestMessage);
Dunittest.proto712 service TestService { service
713 rpc Foo(FooRequest) returns (FooResponse);
714 rpc Bar(BarRequest) returns (BarResponse);
/third_party/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/
Dunittest_no_generic_services.proto50 service TestService { service
51 rpc Foo(TestMessage) returns(TestMessage);
Dunittest.proto712 service TestService { service
713 rpc Foo(FooRequest) returns (FooResponse);
714 rpc Bar(BarRequest) returns (BarResponse);
/third_party/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest_no_generic_services.proto50 service TestService { service
51 rpc Foo(TestMessage) returns(TestMessage);
Dunittest.proto712 service TestService { service
713 rpc Foo(FooRequest) returns (FooResponse);
714 rpc Bar(BarRequest) returns (BarResponse);
/third_party/protobuf/src/google/protobuf/
Dunittest_no_generic_services.proto52 service TestService { service
53 rpc Foo(TestMessage) returns(TestMessage);
Dunittest.proto949 service TestService { service
950 rpc Foo(FooRequest) returns (FooResponse);
951 rpc Bar(BarRequest) returns (BarResponse);
/third_party/grpc/examples/protos/
Dauth_sample.proto39 service TestService { service
41 rpc UnaryCall(Request) returns (Response);
/third_party/grpc/src/ruby/pb/src/proto/grpc/testing/
Dtest_services_pb.rb27 module TestService module
/third_party/grpc/src/python/grpcio_tests/tests/interop/
Dservice.py49 class TestService(test_pb2_grpc.TestServiceServicer): class
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/
Dunittest_proto3.proto380 service TestService { service
381 rpc Foo(FooRequest) returns (FooResponse);
382 rpc Bar(BarRequest) returns (BarResponse);
/third_party/protobuf/csharp/protos/
Dunittest_proto3.proto372 service TestService { service
374 rpc Foo(FooRequest) returns (FooResponse);
375 rpc Bar(BarRequest) returns (BarResponse);
Dunittest.proto945 service TestService { service
946 rpc Foo(FooRequest) returns (FooResponse);
947 rpc Bar(BarRequest) returns (BarResponse);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DICUServiceTest.java103 static final class TestService extends ICUService { class in ICUServiceTest
104 public TestService() { in TestService() method in ICUServiceTest.TestService
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs33 public static partial class TestService class