Home
last modified time | relevance | path

Searched refs:AggregatedPayloadSize (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DSslCredentialsTest.cs92 Assert.AreEqual(12345, response.AggregatedPayloadSize); in AuthContextIsPopulated()
112 return new StreamingInputCallResponse { AggregatedPayloadSize = 12345 }; in StreamingInputCall()
DMessages.cs1365 public int AggregatedPayloadSize { property in Grpc.Testing.StreamingInputCallResponse
1385 if (AggregatedPayloadSize != other.AggregatedPayloadSize) return false; in Equals()
1392 if (AggregatedPayloadSize != 0) hash ^= AggregatedPayloadSize.GetHashCode(); in GetHashCode()
1406 if (AggregatedPayloadSize != 0) { in WriteTo()
1408 output.WriteInt32(AggregatedPayloadSize); in WriteTo()
1418 if (AggregatedPayloadSize != 0) { in CalculateSize()
1419 size += 1 + pb::CodedOutputStream.ComputeInt32Size(AggregatedPayloadSize); in CalculateSize()
1432 if (other.AggregatedPayloadSize != 0) { in MergeFrom()
1433 AggregatedPayloadSize = other.AggregatedPayloadSize; in MergeFrom()
1447 AggregatedPayloadSize = input.ReadInt32(); in MergeFrom()
DTestServiceImpl.cs71 return new StreamingInputCallResponse { AggregatedPayloadSize = sum }; in StreamingInputCall()
DInteropClient.cs235 Assert.AreEqual(74922, response.AggregatedPayloadSize); in RunClientStreamingAsync()
676 Assert.AreEqual(73086, response.AggregatedPayloadSize); in RunClientCompressedStreamingAsync()