Home
last modified time | relevance | path

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

/external/grpc-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.cs278 int boundPort; in AddPortInternal()
283 boundPort = handle.AddSecurePort(address, nativeCredentials); in AddPortInternal()
287 boundPort = handle.AddInsecurePort(address); in AddPortInternal()
290 var newServerPort = new ServerPort(serverPort, boundPort); in AddPortInternal()
292 return boundPort; in AddPortInternal()
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DSimpleServer.java219 int boundPort = start(); in startLocal() local
221 boundPort); in startLocal()
240 int boundPort = start(); in startPublic() local
242 boundPort); in startPublic()
258 int boundPort = start(); in startAllInterfaces() local
260 boundPort); in startAllInterfaces()
/external/grpc-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()
/external/grpc-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()