/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/ |
D | rpc_method.h | 31 enum RpcType { enum 38 RpcMethod(const char* name, RpcType type) in RpcMethod() 44 RpcMethod(const char* name, const char* suffix_for_stats, RpcType type) in RpcMethod() 50 RpcMethod(const char* name, RpcType type, in RpcMethod() 57 RpcMethod(const char* name, const char* suffix_for_stats, RpcType type, in RpcMethod() 66 RpcType method_type() const { return method_type_; } in method_type() 67 void SetMethodType(RpcType type) { method_type_ = type; } in SetMethodType() 73 RpcType method_type_;
|
D | server_interface.h | 231 internal::RpcMethod::RpcType type); 249 const internal::RpcMethod::RpcType type_;
|
D | rpc_service_method.h | 87 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod()
|
D | server_interceptor.h | 96 internal::RpcMethod::RpcType type) in ServerRpcInfo()
|
D | client_interceptor.h | 122 ClientRpcInfo(grpc::ClientContext* ctx, internal::RpcMethod::RpcType type, in ClientRpcInfo()
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/ |
D | rpc_method.h | 31 enum RpcType { enum 38 RpcMethod(const char* name, RpcType type) in RpcMethod() 44 RpcMethod(const char* name, const char* suffix_for_stats, RpcType type) in RpcMethod() 50 RpcMethod(const char* name, RpcType type, in RpcMethod() 57 RpcMethod(const char* name, const char* suffix_for_stats, RpcType type, in RpcMethod() 66 RpcType method_type() const { return method_type_; } in method_type() 67 void SetMethodType(RpcType type) { method_type_ = type; } in SetMethodType() 73 RpcType method_type_;
|
D | server_interface.h | 231 internal::RpcMethod::RpcType type); 249 const internal::RpcMethod::RpcType type_;
|
D | rpc_service_method.h | 87 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod()
|
D | server_interceptor.h | 96 internal::RpcMethod::RpcType type) in ServerRpcInfo()
|
D | client_interceptor.h | 122 ClientRpcInfo(grpc::ClientContext* ctx, internal::RpcMethod::RpcType type, in ClientRpcInfo()
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | rpc_method.h | 31 enum RpcType { enum 38 RpcMethod(const char* name, RpcType type) in RpcMethod() 41 RpcMethod(const char* name, RpcType type, in RpcMethod() 48 RpcType method_type() const { return method_type_; } in method_type() 49 void SetMethodType(RpcType type) { method_type_ = type; } in SetMethodType() 54 RpcType method_type_;
|
D | rpc_service_method.h | 60 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | ClientRunners.cs | 79 config.RpcType, in CreateStarted() 127 readonly RpcType rpcType; 137 …public ClientRunnerImpl(List<Channel> channels, ClientType clientType, RpcType rpcType, int outsta… in ClientRunnerImpl() 312 …GrpcPreconditions.CheckArgument(rpcType == RpcType.Streaming, "Generic client only supports stream… in RunClientAsync() 319 …GrpcPreconditions.CheckArgument(rpcType == RpcType.Unary, "Sync client can only be used for Unary … in RunClientAsync() 327 case RpcType.Unary: in RunClientAsync() 329 case RpcType.Streaming: in RunClientAsync()
|
D | RunnerClientServerTest.cs | 63 RpcType = RpcType.Unary, in ClientServerRunner()
|
D | Control.cs | 106 …e), typeof(global::Grpc.Testing.ServerType), typeof(global::Grpc.Testing.RpcType), }, new pbr::Gen… in ControlReflection() 155 public enum RpcType { enum 1146 private global::Grpc.Testing.RpcType rpcType_ = 0; 1148 public global::Grpc.Testing.RpcType RpcType { property in Grpc.Testing.ClientConfig 1300 if (RpcType != other.RpcType) return false; in Equals() 1323 if (RpcType != 0) hash ^= RpcType.GetHashCode(); in GetHashCode() 1368 if (RpcType != 0) { in WriteTo() 1370 output.WriteEnum((int) RpcType); in WriteTo() 1430 if (RpcType != 0) { in CalculateSize() 1431 size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) RpcType); in CalculateSize() [all …]
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/ |
D | ClientConfiguration.java | 26 import io.grpc.benchmarks.proto.Control.RpcType; 62 RpcType rpcType = RpcType.UNARY; 214 config.rpcType = RpcType.STREAMING; in setClientValue()
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/driver/ |
D | LoadClient.java | 181 if (config.getRpcType() == Control.RpcType.UNARY) { in start() 185 if (config.getRpcType() == Control.RpcType.UNARY) { in start() 187 } else if (config.getRpcType() == Control.RpcType.STREAMING) { in start() 195 if (config.getRpcType() == Control.RpcType.UNARY) { in start() 199 if (config.getRpcType() == Control.RpcType.UNARY) { in start() 201 } else if (config.getRpcType() == Control.RpcType.STREAMING) { in start()
|
/external/grpc-grpc-java/benchmarks/src/test/java/io/grpc/benchmarks/driver/ |
D | LoadWorkerTest.java | 79 .setRpcType(Control.RpcType.UNARY) in runUnaryBlockingClosedLoop() 108 .setRpcType(Control.RpcType.UNARY) in runUnaryAsyncClosedLoop() 137 .setRpcType(Control.RpcType.STREAMING) in runPingPongAsyncClosedLoop() 166 .setRpcType(Control.RpcType.STREAMING) in runGenericPingPongAsyncClosedLoop()
|
D | LoadClientTest.java | 44 config.setRpcType(Control.RpcType.UNARY); in testHistogramToStatsConversion()
|
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/ |
D | RpcType.php | 10 class RpcType class
|
D | ClientConfig.php | 280 GPBUtil::checkEnum($var, \Grpc\Testing\RpcType::class);
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/ |
D | run_xds_tests.py | 1785 messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL, 1786 messages_pb2.ClientConfigureRequest.RpcType.EMPTY_CALL 1799 messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL, 1800 messages_pb2.ClientConfigureRequest.RpcType.EMPTY_CALL 1801 ], [(messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL, 1803 (messages_pb2.ClientConfigureRequest.RpcType.EMPTY_CALL, 1837 [messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL]) 1876 messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL, 1877 messages_pb2.ClientConfigureRequest.RpcType.EMPTY_CALL, 1880 (messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL, [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/ |
D | messages.proto | 240 // Per-method RPC statistics. The key is the RpcType in string form; e.g. 248 enum RpcType { enum 255 RpcType type = 1; 261 repeated RpcType types = 1;
|
/external/grpc-grpc/src/php/tests/qps/ |
D | client.php | 124 if ($config->getRpcType() == Grpc\Testing\RpcType::UNARY) {
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | control.proto | 37 enum RpcType { enum 91 RpcType rpc_type = 8;
|