HomeSort by relevance Sort by last modified time
    Searched refs:connectToServer (Results 1 - 12 of 12) sorted by null

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
NetworkClient.java 41 * will be setup the same as if Network.connectToServer
52 public void connectToServer( String host, int port, int remoteUdpPort ) throws IOException;
65 public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOException;
Network.java 121 public static Client connectToServer( String host, int hostPort ) throws IOException
123 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, hostPort );
130 public static Client connectToServer( String host, int hostPort, int remoteUdpPort ) throws IOException
132 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, remoteUdpPort );
139 public static Client connectToServer( String gameName, int version,
142 return connectToServer( gameName, version, host, hostPort, hostPort );
161 public static Client connectToServer( String gameName, int version,
179 public void connectToServer( String host, int port, int remoteUdpPort ) throws IOException
181 connectToServer( InetAddress.getByName(host), port, remoteUdpPort );
184 public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOExceptio
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestNetworkStress.java 58 Client client = Network.connectToServer("localhost", 5110);
TestMessages.java 74 Client client = Network.connectToServer("localhost", 5110);
TestThroughput.java 101 Client client = Network.connectToServer("localhost", 5110);
TestLatency.java 78 client = Network.connectToServer("localhost", 5110);
TestRemoteCall.java 109 Client client = Network.connectToServer("localhost", 5110);
TestSerialization.java 149 Client client = Network.connectToServer( "localhost", 5110 );
TestChatClient.java 90 client = Network.connectToServer(TestChatServer.NAME, TestChatServer.VERSION,
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
NsdChatActivity.java 81 mConnection.connectToServer(service.getHost(),
ChatConnection.java 58 public void connectToServer(InetAddress address, int port) {
153 connectToServer(address, port);
  /system/core/libcutils/
properties.c 93 static int connectToServer(const char* fileName)
129 gPropFd = connectToServer(SYSTEM_PROPERTY_PIPE_NAME);

Completed in 133 milliseconds