Home
last modified time | relevance | path

Searched refs:DivReply (Results 1 – 10 of 10) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Examples/
DMathGrpc.cs31DivReply> __Marshaller_math_DivReply = grpc::Marshallers.Create((arg) => global::Google.Protobuf.M…
35 …lobal::Math.DivArgs, global::Math.DivReply> __Method_Div = new grpc::Method<global::Math.DivArgs, …
42 …bal::Math.DivArgs, global::Math.DivReply> __Method_DivMany = new grpc::Method<global::Math.DivArgs…
79 …public virtual global::System.Threading.Tasks.Task<global::Math.DivReply> Div(global::Math.DivArgs… in Div()
94 …al::Math.DivArgs> requestStream, grpc::IServerStreamWriter<global::Math.DivReply> responseStream, … in DivMany()
159 …public virtual global::Math.DivReply Div(global::Math.DivArgs request, grpc::Metadata headers = nu… in Div()
170 … public virtual global::Math.DivReply Div(global::Math.DivArgs request, grpc::CallOptions options) in Div()
183 …public virtual grpc::AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, … in DivAsync()
194 …public virtual grpc::AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, … in DivAsync()
208 …public virtual grpc::AsyncDuplexStreamingCall<global::Math.DivArgs, global::Math.DivReply> DivMany… in DivMany()
[all …]
DMath.cs40 …new pbr::GeneratedClrTypeInfo(typeof(global::Math.DivReply), global::Math.DivReply.Parser, new[]{ … in MathReflection()
207 public sealed partial class DivReply : pb::IMessage<DivReply> { class
208 …rivate static readonly pb::MessageParser<DivReply> _parser = new pb::MessageParser<DivReply>(() =>…
211 public static pb::MessageParser<DivReply> Parser { get { return _parser; } }
224 public DivReply() { in DivReply() method in Math.DivReply
231 public DivReply(DivReply other) : this() { in DivReply() method in Math.DivReply
238 public DivReply Clone() { in Clone()
239 return new DivReply(this); in Clone()
266 return Equals(other as DivReply); in Equals()
270 public bool Equals(DivReply other) { in Equals()
[all …]
DMathServiceImpl.cs33 public override Task<DivReply> Div(DivArgs request, ServerCallContext context) in Div()
63 … DivMany(IAsyncStreamReader<DivArgs> requestStream, IServerStreamWriter<DivReply> responseStream, … in DivMany()
68 static DivReply DivInternal(DivArgs args) in DivInternal()
79 return new DivReply { Quotient = quotient, Remainder = remainder }; in DivInternal()
DMathExamples.cs29 DivReply result = client.Div(new DivArgs { Dividend = 10, Divisor = 3 }); in DivExample()
35 DivReply result = await client.DivAsync(new DivArgs { Dividend = 4, Divisor = 5 }); in DivAsyncExample()
95DivReply result = await client.DivAsync(new DivArgs { Dividend = sum.Num_, Divisor = numbers.Count… in DependendRequestsExample()
106 DivReply result = await client.DivAsync(new DivArgs { Dividend = 5, Divisor = 0 }); in HandleErrorExample()
/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/
DMathClientMockableTest.cs38 var expected = new DivReply(); in ClientBaseBlockingUnaryCallCanBeMocked()
48 var expected = new DivReply(); in ClientBaseBlockingUnaryCallWithCallOptionsCallCanBeMocked()
59 …var fakeCall = TestCalls.AsyncUnaryCall<DivReply>(Task.FromResult(new DivReply()), Task.FromResult… in ClientBaseAsyncUnaryCallCanBeMocked()
93 var mockResponseStream = new Moq.Mock<IAsyncStreamReader<DivReply>>(); in ClientBaseDuplexStreamingCallCanBeMocked()
96 …var fakeCall = TestCalls.AsyncDuplexStreamingCall<DivArgs, DivReply>(mockRequestStream.Object, moc… in ClientBaseDuplexStreamingCallCanBeMocked()
DMathClientServerTests.cs64 DivReply response = client.Div(new DivArgs { Dividend = 10, Divisor = 3 }); in Div1()
72 DivReply response = client.Div(new DivArgs { Dividend = 0, Divisor = 1 }); in Div2()
87 DivReply response = await client.DivAsync(new DivArgs { Dividend = 10, Divisor = 3 }); in DivAsync()
/external/grpc-grpc/src/ruby/bin/
Dmath_services_pb.rb34 rpc :Div, DivArgs, DivReply
39 rpc :DivMany, stream(DivArgs), stream(DivReply)
Dmath_pb.rb28 DivReply = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.DivReply").msgclass constant
/external/grpc-grpc/src/proto/math/
Dmath.proto25 message DivReply { message
45 rpc Div (DivArgs) returns (DivReply) {
52 rpc DivMany (stream DivArgs) returns (stream DivReply) {
/external/rust/crates/grpcio-sys/grpc/src/proto/math/
Dmath.proto25 message DivReply { message
45 rpc Div (DivArgs) returns (DivReply) {
52 rpc DivMany (stream DivArgs) returns (stream DivReply) {