Home
last modified time | relevance | path

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

/external/grpc-grpc/tools/http2_interop/
Dhttp2interop_test.go36 UseTestCa: *useTestCa,
50 if ctx.UseTestCa {
Dhttp2interop.go26 UseTestCa bool member
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DControl.cs654 public bool UseTestCa { property in Grpc.Testing.SecurityParams
696 if (UseTestCa != other.UseTestCa) return false; in Equals()
705 if (UseTestCa != false) hash ^= UseTestCa.GetHashCode(); in GetHashCode()
721 if (UseTestCa != false) { in WriteTo()
723 output.WriteBool(UseTestCa); in WriteTo()
741 if (UseTestCa != false) { in CalculateSize()
761 if (other.UseTestCa != false) { in MergeFrom()
762 UseTestCa = other.UseTestCa; in MergeFrom()
782 UseTestCa = input.ReadBool(); in MergeFrom()
DInteropClient.cs63 public bool? UseTestCa { get; set; } property in Grpc.IntegrationTesting.InteropClient.ClientOptions
116 …credentials = options.UseTestCa.Value ? TestCredentials.CreateSslCredentials() : new SslCredential… in CreateCredentialsAsync()