/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_master_service_impl.cc | 55 ::grpc::internal::RpcMethod::NORMAL_RPC, in Stub() 58 ::grpc::internal::RpcMethod::NORMAL_RPC, in Stub() 61 ::grpc::internal::RpcMethod::NORMAL_RPC, in Stub() 64 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 66 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 68 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 70 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 72 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 74 ::grpc::internal::RpcMethod::NORMAL_RPC, channel), in Stub() 76 ::grpc::internal::RpcMethod::NORMAL_RPC, in Stub() [all …]
|
D | grpc_master_service_impl.h | 112 const ::grpc::internal::RpcMethod rpcmethod_CreateSession_; 113 const ::grpc::internal::RpcMethod rpcmethod_ExtendSession_; 114 const ::grpc::internal::RpcMethod rpcmethod_PartialRunSetup_; 115 const ::grpc::internal::RpcMethod rpcmethod_RunStep_; 116 const ::grpc::internal::RpcMethod rpcmethod_CloseSession_; 117 const ::grpc::internal::RpcMethod rpcmethod_ListDevices_; 118 const ::grpc::internal::RpcMethod rpcmethod_Reset_; 119 const ::grpc::internal::RpcMethod rpcmethod_MakeCallable_; 120 const ::grpc::internal::RpcMethod rpcmethod_RunCallable_; 121 const ::grpc::internal::RpcMethod rpcmethod_ReleaseCallable_;
|
/external/grpc-grpc/src/cpp/client/ |
D | generic_stub.cc | 34 internal::RpcMethod(method.c_str(), in CallInternal() 35 internal::RpcMethod::BIDI_STREAMING), in CallInternal() 61 internal::RpcMethod(method.c_str(), internal::RpcMethod::NORMAL_RPC), in PrepareUnaryCall() 71 internal::RpcMethod(method.c_str(), internal::RpcMethod::NORMAL_RPC), in UnaryCall()
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/generic/ |
D | generic_stub.h | 69 grpc::internal::RpcMethod(method.c_str(), in PrepareUnaryCall() 70 grpc::internal::RpcMethod::NORMAL_RPC), in PrepareUnaryCall() 169 grpc::internal::RpcMethod(method.c_str(), in UnaryCallInternal() 170 grpc::internal::RpcMethod::NORMAL_RPC), in UnaryCallInternal() 181 grpc::internal::RpcMethod(method.c_str(), in PrepareUnaryCallInternal() 182 grpc::internal::RpcMethod::NORMAL_RPC), in PrepareUnaryCallInternal() 191 grpc::internal::RpcMethod( in PrepareBidiStreamingCallInternal() 192 method.c_str(), grpc::internal::RpcMethod::BIDI_STREAMING), in PrepareBidiStreamingCallInternal() 204 grpc::internal::RpcMethod( in CallInternal() 205 method.c_str(), grpc::internal::RpcMethod::BIDI_STREAMING), in CallInternal()
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/generic/ |
D | generic_stub.h | 69 grpc::internal::RpcMethod(method.c_str(), in PrepareUnaryCall() 70 grpc::internal::RpcMethod::NORMAL_RPC), in PrepareUnaryCall() 169 grpc::internal::RpcMethod(method.c_str(), in UnaryCallInternal() 170 grpc::internal::RpcMethod::NORMAL_RPC), in UnaryCallInternal() 181 grpc::internal::RpcMethod(method.c_str(), in PrepareUnaryCallInternal() 182 grpc::internal::RpcMethod::NORMAL_RPC), in PrepareUnaryCallInternal() 191 grpc::internal::RpcMethod( in PrepareBidiStreamingCallInternal() 192 method.c_str(), grpc::internal::RpcMethod::BIDI_STREAMING), in PrepareBidiStreamingCallInternal() 204 grpc::internal::RpcMethod( in CallInternal() 205 method.c_str(), grpc::internal::RpcMethod::BIDI_STREAMING), in CallInternal()
|
/external/grpc-grpc-java/testing-proto/src/test/java/io/grpc/testing/protobuf/ |
D | SimpleServiceTest.java | 27 import io.grpc.stub.annotations.RpcMethod; 84 return Collections.singleton(RpcMethod.class.getCanonicalName()); in getSupportedAnnotationTypes() 88 MethodDescriptor<SimpleRequest, SimpleResponse> descriptor, RpcMethod annotation) { in verifyRpcMethodAnnotation() 114 Map<String, RpcMethod> methodToAnnotation = new HashMap<String, RpcMethod>(); in process() 116 RpcMethod annotation = enclosedElement.getAnnotation(RpcMethod.class); in process()
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/ |
D | server_interceptor.h | 83 static_cast<Type>(internal::RpcMethod::NORMAL_RPC), 86 static_cast<Type>(internal::RpcMethod::CLIENT_STREAMING), 89 static_cast<Type>(internal::RpcMethod::SERVER_STREAMING), 92 static_cast<Type>(internal::RpcMethod::BIDI_STREAMING), 96 internal::RpcMethod::RpcType type) in ServerRpcInfo()
|
D | client_interceptor.h | 102 static_cast<Type>(internal::RpcMethod::NORMAL_RPC), 105 static_cast<Type>(internal::RpcMethod::CLIENT_STREAMING), 108 static_cast<Type>(internal::RpcMethod::SERVER_STREAMING), 111 static_cast<Type>(internal::RpcMethod::BIDI_STREAMING), 118 ClientRpcInfo(grpc::ClientContext* ctx, internal::RpcMethod::RpcType type, in ClientRpcInfo()
|
D | rpc_method.h | 29 class RpcMethod { 38 RpcMethod(const char* name, RpcType type) in RpcMethod() function 41 RpcMethod(const char* name, RpcType type, in RpcMethod() function
|
D | client_unary_call.h | 33 class RpcMethod; variable 43 Status BlockingUnaryCall(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCall() 58 BlockingUnaryCallImpl(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCallImpl()
|
D | rpc_service_method.h | 84 class RpcServiceMethod : public RpcMethod { 87 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod() 89 : RpcMethod(name, type), in RpcServiceMethod()
|
D | channel_interface.h | 64 class RpcMethod; variable 130 friend class ::grpc::internal::RpcMethod; 133 virtual internal::Call CreateCall(const internal::RpcMethod& method, 154 const internal::RpcMethod& /*method*/, ::grpc::ClientContext* /*context*/, in CreateCallInternal() argument
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/ |
D | server_interceptor.h | 83 static_cast<Type>(internal::RpcMethod::NORMAL_RPC), 86 static_cast<Type>(internal::RpcMethod::CLIENT_STREAMING), 89 static_cast<Type>(internal::RpcMethod::SERVER_STREAMING), 92 static_cast<Type>(internal::RpcMethod::BIDI_STREAMING), 96 internal::RpcMethod::RpcType type) in ServerRpcInfo()
|
D | client_interceptor.h | 102 static_cast<Type>(internal::RpcMethod::NORMAL_RPC), 105 static_cast<Type>(internal::RpcMethod::CLIENT_STREAMING), 108 static_cast<Type>(internal::RpcMethod::SERVER_STREAMING), 111 static_cast<Type>(internal::RpcMethod::BIDI_STREAMING), 118 ClientRpcInfo(grpc::ClientContext* ctx, internal::RpcMethod::RpcType type, in ClientRpcInfo()
|
D | rpc_method.h | 29 class RpcMethod { 38 RpcMethod(const char* name, RpcType type) in RpcMethod() function 41 RpcMethod(const char* name, RpcType type, in RpcMethod() function
|
D | client_unary_call.h | 33 class RpcMethod; variable 43 Status BlockingUnaryCall(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCall() 58 BlockingUnaryCallImpl(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCallImpl()
|
D | rpc_service_method.h | 84 class RpcServiceMethod : public RpcMethod { 87 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod() 89 : RpcMethod(name, type), in RpcServiceMethod()
|
D | channel_interface.h | 64 class RpcMethod; variable 130 friend class ::grpc::internal::RpcMethod; 133 virtual internal::Call CreateCall(const internal::RpcMethod& method, 154 const internal::RpcMethod& /*method*/, ::grpc::ClientContext* /*context*/, in CreateCallInternal() argument
|
D | delegating_channel.h | 46 internal::Call CreateCall(const internal::RpcMethod& method, in CreateCall() 74 internal::Call CreateCallInternal(const internal::RpcMethod& method, in CreateCallInternal()
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | rpc_method.h | 29 class RpcMethod { 38 RpcMethod(const char* name, RpcType type) in RpcMethod() function 41 RpcMethod(const char* name, RpcType type, in RpcMethod() function
|
D | rpc_service_method.h | 57 class RpcServiceMethod : public RpcMethod { 60 RpcServiceMethod(const char* name, RpcMethod::RpcType type, in RpcServiceMethod() 62 : RpcMethod(name, type), in RpcServiceMethod()
|
D | client_unary_call.h | 35 class RpcMethod; variable 38 Status BlockingUnaryCall(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCall() 49 BlockingUnaryCallImpl(ChannelInterface* channel, const RpcMethod& method, in BlockingUnaryCallImpl()
|
D | client_callback.h | 38 class RpcMethod; variable 43 void CallbackUnaryCall(ChannelInterface* channel, const RpcMethod& method, in CallbackUnaryCall() 54 CallbackUnaryCallImpl(ChannelInterface* channel, const RpcMethod& method, in CallbackUnaryCallImpl()
|
D | channel_interface.h | 41 class RpcMethod; variable 110 friend class ::grpc::internal::RpcMethod; 111 virtual internal::Call CreateCall(const internal::RpcMethod& method,
|
/external/flatbuffers/tests/ |
D | monster_test.grpc.fb.cc | 32 …) , rpcmethod_Store_(MonsterStorage_method_names[0], ::grpc::internal::RpcMethod::NORMAL_RPC, cha… in Stub() 33 …, rpcmethod_Retrieve_(MonsterStorage_method_names[1], ::grpc::internal::RpcMethod::SERVER_STREAMIN… in Stub() 34 …, rpcmethod_GetMaxHitPoint_(MonsterStorage_method_names[2], ::grpc::internal::RpcMethod::CLIENT_ST… in Stub() 35 …, rpcmethod_GetMinMaxHitPoints_(MonsterStorage_method_names[3], ::grpc::internal::RpcMethod::BIDI_… in Stub() 89 ::grpc::internal::RpcMethod::NORMAL_RPC, in Service() 94 ::grpc::internal::RpcMethod::SERVER_STREAMING, in Service() 99 ::grpc::internal::RpcMethod::CLIENT_STREAMING, in Service() 104 ::grpc::internal::RpcMethod::BIDI_STREAMING, in Service()
|