OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tcpPort
(Results
1 - 3
of
3
) sorted by null
/device/generic/goldfish/libqemu/
test_guest_2.c
51
const char*
tcpPort
= NULL;
92
tcpPort
= argv[1];
110
if (
tcpPort
&& pipeName) {
115
if (
tcpPort
!= NULL) {
116
localPort = atoi(
tcpPort
);
118
fprintf(stderr, "Invalid port number: %s\n",
tcpPort
);
136
if (
tcpPort
!= NULL) {
test_host_1.c
147
const char*
tcpPort
= NULL;
178
tcpPort
= argv[1];
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
Network.java
72
public static Server createServer( int
tcpPort
, int udpPort ) throws IOException
74
return createServer( DEFAULT_GAME_NAME, DEFAULT_VERSION,
tcpPort
, udpPort );
86
* @param
tcpPort
The port upon which the TCP hosting will listen for new connections.
91
public static Server createServer( String gameName, int version, int
tcpPort
, int udpPort ) throws IOException
94
SelectorKernel reliable = new SelectorKernel(
tcpPort
);
Completed in 124 milliseconds