Home
last modified time | relevance | path

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

/third_party/grpc/src/csharp/Grpc.Core/
DServerPort.cs39 readonly int boundPort; field in Grpc.Core.ServerPort
58 internal ServerPort(ServerPort serverPort, int boundPort) in ServerPort() argument
63 this.boundPort = boundPort; in ServerPort()
101 return boundPort;
DServer.cs286 int boundPort; in AddPortInternal()
291 boundPort = handle.AddSecurePort(address, nativeCredentials); in AddPortInternal()
295 boundPort = handle.AddInsecurePort(address); in AddPortInternal()
298 var newServerPort = new ServerPort(serverPort, boundPort); in AddPortInternal()
300 return boundPort; in AddPortInternal()
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DServerTest.cs61 var boundPort = server.Ports.Single(); in PickUnusedPort()
62 Assert.AreEqual(0, boundPort.Port); in PickUnusedPort()
63 Assert.Greater(boundPort.BoundPort, 0); in PickUnusedPort()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DQpsWorker.cs77 int boundPort = server.Ports.Single().BoundPort; in RunAsync()
78 GrpcEnvironment.Logger.Info("Running qps worker server on {0}:{1}", host, boundPort); in RunAsync()