Searched refs:boundPort (Results 1 – 4 of 4) sorted by relevance
39 readonly int boundPort; field in Grpc.Core.ServerPort58 internal ServerPort(ServerPort serverPort, int boundPort) in ServerPort() argument63 this.boundPort = boundPort; in ServerPort()101 return boundPort;
286 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()
61 var boundPort = server.Ports.Single(); in PickUnusedPort()62 Assert.AreEqual(0, boundPort.Port); in PickUnusedPort()63 Assert.Greater(boundPort.BoundPort, 0); in PickUnusedPort()
77 int boundPort = server.Ports.Single().BoundPort; in RunAsync()78 GrpcEnvironment.Logger.Info("Running qps worker server on {0}:{1}", host, boundPort); in RunAsync()