OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:serverPort
(Results
1 - 18
of
18
) sorted by null
/external/parameter-framework/upstream/tools/xmlGenerator/
hostConfig.py
35
def configure(infile=sys.stdin, outfile=sys.stdout,
serverPort
=None, structPath=None):
38
Allow tuning on @
serverPort
port, remove the plugins and settings need,
44
if
serverPort
is not None:
45
node.setAttribute("
ServerPort
",
serverPort
)
63
configure(
serverPort
=sys.argv[1], structPath=sys.argv[2])
/external/linux-kselftest/tools/testing/selftests/bpf/
tcp_server.py
35
serverPort
= SERVER_PORT
49
serverPort
= sn[1]
51
cmdStr = ("./tcp_client.py %d &") % (
serverPort
)
tcp_client.py
32
serverPort
= int(sys.argv[1])
38
sock.connect((HostName,
serverPort
))
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/driver/
LoadWorker.java
41
private final int
serverPort
;
44
LoadWorker(int driverPort, int
serverPort
) throws Exception {
45
this.
serverPort
=
serverPort
;
68
int
serverPort
= 0;
89
serverPort
= Integer.valueOf(value);
108
LoadWorker loadWorker = new LoadWorker(driverPort,
serverPort
);
134
if (
serverPort
!= 0 && value.getSetup().getPort() == 0) {
136
builder.getSetupBuilder().setPort(
serverPort
);
/external/grpc-grpc-java/benchmarks/src/test/java/io/grpc/benchmarks/driver/
LoadWorkerTest.java
73
int
serverPort
= startServer(serverArgsBuilder.build());
76
String serverAddress = "localhost:" +
serverPort
;
101
int
serverPort
= startServer(serverArgsBuilder.build());
104
String serverAddress = "localhost:" +
serverPort
;
130
int
serverPort
= startServer(serverArgsBuilder.build());
133
String serverAddress = "localhost:" +
serverPort
;
159
int
serverPort
= startServer(serverArgsBuilder.build());
162
String serverAddress = "localhost:" +
serverPort
;
236
final AtomicInteger
serverPort
= new AtomicInteger();
242
serverPort
.set(value.getPort())
[
all
...]
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/
ProxyTest.java
63
int
serverPort
= server.init();
67
proxy = new TrafficControlProxy(
serverPort
, 1024 * 1024, latency, TimeUnit.NANOSECONDS);
94
int
serverPort
= server.init();
98
proxy = new TrafficControlProxy(
serverPort
, 1024 * 1024, latency, TimeUnit.NANOSECONDS);
124
int
serverPort
= server.init();
130
proxy = new TrafficControlProxy(
serverPort
, bandwidth, 200, TimeUnit.MILLISECONDS);
149
int
serverPort
= server.init();
154
proxy = new TrafficControlProxy(
serverPort
, bandwidth, 200, TimeUnit.MILLISECONDS);
TrafficControlProxy.java
44
private final int
serverPort
;
60
public TrafficControlProxy(int
serverPort
) {
61
this(
serverPort
, DEFAULT_BAND_BPS, DEFAULT_DELAY_NANOS, TimeUnit.NANOSECONDS);
68
public TrafficControlProxy(int
serverPort
, int targetBps, int targetLatency,
72
this.
serverPort
=
serverPort
;
95
serverSock.connect(new InetSocketAddress(localhost,
serverPort
));
NettyFlowControlTest.java
71
private int
serverPort
;
91
serverPort
= server.getPort();
102
proxy = new TrafficControlProxy(
serverPort
, HIGH_BAND, MED_LAT, TimeUnit.MILLISECONDS);
111
proxy = new TrafficControlProxy(
serverPort
, LOW_BAND, MED_LAT, TimeUnit.MILLISECONDS);
120
proxy = new TrafficControlProxy(
serverPort
, HIGH_BAND, MED_LAT, TimeUnit.MILLISECONDS);
/external/opencensus-java/examples/src/main/java/io/opencensus/examples/grpc/helloworld/
HelloWorldServer.java
53
private final int
serverPort
;
56
private HelloWorldServer(int
serverPort
) {
57
this.
serverPort
=
serverPort
;
87
server = ServerBuilder.forPort(
serverPort
).addService(new GreeterImpl()).build().start();
88
logger.info("Server started, listening on " +
serverPort
);
118
final int
serverPort
= getPortOrDefaultFromArgs(args, 0, 50051);
150
final HelloWorldServer server = new HelloWorldServer(
serverPort
);
HelloWorldClient.java
107
final int
serverPort
= getPortOrDefaultFromArgs(args, 2, 50051);
135
HelloWorldClient client = new HelloWorldClient(host,
serverPort
);
/external/grpc-grpc/src/csharp/Grpc.Core/
ServerPort.cs
28
public class
ServerPort
48
public
ServerPort
(string host, int port, ServerCredentials credentials)
56
/// Creates a port from an existing <c>
ServerPort
</c> instance and boundPort value.
58
internal
ServerPort
(
ServerPort
serverPort
, int boundPort)
60
this.host =
serverPort
.host;
61
this.port =
serverPort
.port;
62
this.credentials =
serverPort
.credentials;
Server.cs
49
readonly List<
ServerPort
> serverPortList = new List<
ServerPort
>();
271
private int AddPortInternal(
ServerPort
serverPort
)
275
GrpcPreconditions.CheckNotNull(
serverPort
.Credentials, "
serverPort
");
277
var address = string.Format("{0}:{1}",
serverPort
.Host,
serverPort
.Port);
279
using (var nativeCredentials =
serverPort
.Credentials.ToNativeCredentials())
290
var newServerPort = new
ServerPort
(serverPort, boundPort)
[
all
...]
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
TestServiceClient.java
78
private int
serverPort
= 8080;
118
serverPort
= Integer.parseInt(value);
162
+ "\n --server_port=PORT Port to connect to. Default " + c.
serverPort
354
return GoogleDefaultChannelBuilder.forAddress(serverHost,
serverPort
).build();
357
return AltsChannelBuilder.forAddress(serverHost,
serverPort
).build();
371
NettyChannelBuilder.forAddress(serverHost,
serverPort
)
383
OkHttpChannelBuilder okBuilder = OkHttpChannelBuilder.forAddress(serverHost,
serverPort
);
387
GrpcUtil.authorityFromHostAndPort(serverHostOverride,
serverPort
));
Http2Client.java
82
private int
serverPort
= 8080;
115
serverPort
= Integer.parseInt(value);
130
+ "\n --server_port=PORT Port to connect to. Default " + c.
serverPort
366
return NettyChannelBuilder.forAddress(new InetSocketAddress(address,
serverPort
))
/development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnClient.java
51
final TextView
serverPort
= findViewById(R.id.port);
62
serverPort
.setText(String.valueOf(serverPortPrefValue == 0 ? "" : serverPortPrefValue));
89
serverPortNum = Integer.parseInt(
serverPort
.getText().toString());
ToyVpnConnection.java
99
final String serverName, final int
serverPort
, final byte[] sharedSecret,
106
mServerPort=
serverPort
;
/external/grpc-grpc/tools/http2_interop/
http2interop_test.go
18
serverPort
= flag.Int("server_port", 443, "The port to test")
33
ServerPort
: *
serverPort
,
41
if ctx.
ServerPort
!= -1 {
42
ctx.serverSpec += ":" + strconv.Itoa(ctx.
ServerPort
)
/external/error_prone/javac/
javac-9+181-r4173-1.jar
Completed in 1870 milliseconds