Home
last modified time | relevance | path

Searched refs:BytebufParams (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DPayloads.cs494 case PayloadOneofCase.BytebufParams: in PayloadConfig()
495 BytebufParams = other.BytebufParams.Clone(); in PayloadConfig()
516 public global::Grpc.Testing.ByteBufferParams BytebufParams { property in Grpc.Testing.PayloadConfig
517 …get { return payloadCase_ == PayloadOneofCase.BytebufParams ? (global::Grpc.Testing.ByteBufferPara…
520 payloadCase_ = value == null ? PayloadOneofCase.None : PayloadOneofCase.BytebufParams;
550 BytebufParams = 1, enumerator
579 if (!object.Equals(BytebufParams, other.BytebufParams)) return false; in Equals()
589 if (payloadCase_ == PayloadOneofCase.BytebufParams) hash ^= BytebufParams.GetHashCode(); in GetHashCode()
606 if (payloadCase_ == PayloadOneofCase.BytebufParams) { in WriteTo()
608 output.WriteMessage(BytebufParams); in WriteTo()
[all …]
DClientRunners.cs145 …is.cachedByteBufferRequest = new Lazy<byte[]>(() => new byte[payloadConfig.BytebufParams.ReqSize]); in ClientRunnerImpl()
309 if (payloadConfig.PayloadCase == PayloadConfig.PayloadOneofCase.BytebufParams) in RunClientAsync()
DServerRunners.cs73 … var genericService = new GenericServiceImpl(config.PayloadConfig.BytebufParams.RespSize); in CreateStarted()