HomeSort by relevance Sort by last modified time
    Searched refs:Server (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
ConnectionListener.java 38 * removals within a server.
46 * Called when a connection has been added to the specified server and
49 public void connectionAdded( Server server, HostedConnection conn );
53 * server.
55 public void connectionRemoved( Server server, HostedConnection conn );
HostedConnection.java 39 * hosted in a server instance.
47 * Returns the Server instance that is hosting this connection.
49 public Server getServer();
52 * Returns the server-unique ID for this client.
65 * Closes and removes this connection from the server
Network.java 47 * server and client instances.
58 * Creates a Server that will utilize both reliable and fast
62 public static Server createServer( int port ) throws IOException
68 * Creates a Server that will utilize both reliable and fast
72 public static Server createServer( int tcpPort, int udpPort ) throws IOException
78 * Creates a named and versioned Server that will utilize both reliable and fast
85 * clients have connected to an incompatible server.
89 * completely disable UDP traffic for this server.
91 public static Server createServer( String gameName, int version, int tcpPort, int udpPort ) throws IOException
109 * game name and version must match the server or the client will be turne
    [all...]
Server.java 44 public interface Server
47 * Returns the 'game name' for this server. This should match the
53 * Returns the game-specific version of this server used for detecting
71 * server.broadcast( Filters.in( conn1, conn2, conn3 ), message );
74 * server.broadcast( Filters.notEqualTo( source ), message );
87 * server.broadcast( Filters.in( conn1, conn2, conn3 ), message );
90 * server.broadcast( Filters.notEqualTo( source ), message );
96 * Start the server so that it will began accepting new connections
102 * Adds an alternate channel to the server, using the specified port. This is an
113 * Returns true if the server has been started
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/public/
Server.h 5 * Connection server.
9 * Iterative socket server using UNIX domain stream protocol.
54 class Server: public CThread
59 * Server contructor.
64 Server(
70 * Server destructor.
73 virtual ~Server(
78 * Start server and listen for incoming connections.
79 * Implements the central socket server loop. Incoming connections will be stored.
88 * be handled by the server
    [all...]
NetlinkServer.h 5 * Connection server.
9 * Iterative socket server using Netlink dgram protocol.
49 #include "Server.h"
51 class NetlinkServer: public Server, public NetlinkConnectionManager
55 * Server contructor.
64 * Server destructor.
72 * Start server and listen for incoming connections.
73 * Implements the central socket server loop. Incoming connections will be stored.
83 * be the server's responsability.
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestNetworkStress.java 42 public void connectionAdded(Server server, HostedConnection conn) {
47 public void connectionRemoved(Server server, HostedConnection conn) {
53 Server server = Network.createServer(5110); local
54 server.start();
55 server.addConnectionListener(new TestNetworkStress());
TestRemoteCall.java 39 import com.jme3.network.Server;
52 * Interface implemented by the server, exposing
57 * Attaches the model with the given name to the server's scene.
94 Server server = Network.createServer(5110); local
95 server.start();
97 ObjectStore store = new ObjectStore(server);
TestChatServer.java 39 * A simple test chat server. When SM implements a set
49 public static final String NAME = "Test Chat Server";
63 // Use this to test the client/server name version check
64 Server server = Network.createServer(NAME, VERSION, PORT, UDP_PORT); local
65 server.start();
68 server.addMessageListener(handler, ChatMessage.class);
TestMessages.java 53 System.out.println("Server: Received ping message!");
71 Server server = Network.createServer(5110); local
72 server.start();
77 server.addMessageListener(new ServerPingResponder(), PingMessage.class);
TestThroughput.java 84 // The 'reliable' flag is transient and the server doesn't
96 // Use this to test the client/server name version check
97 //Server server = Network.createServer( "bad name", 42, 5110, 5110 );
98 Server server = Network.createServer(5110, 5110); local
99 server.start();
105 server.addMessageListener(new TestThroughput(true), TestMessage.class);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AppBridge.java 55 public interface Server {
70 // If server is null, the services are not available.
71 public abstract void setServer(Server server);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
Android.mk 3 # MC driver server files
10 SERVER_PATH := Daemon/Server
16 LOCAL_SRC_FILES += $(SERVER_PATH)/Server.cpp \
Server.cpp 5 * Connection server.
35 #include "public/Server.h"
44 Server::Server(
54 void Server::run(
59 LOG_I("Server: start listening on socket %s", socketAddr.c_str());
77 LOG_ERRNO("Binding to server socket failed, because bind");
94 // Select server socket descriptor
112 LOG_V(" Server: waiting on sockets");
126 LOG_W(" Server: select() returned 0, spurious event?.")
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Server.java 47 public class Server extends SIPHeader implements ServerHeader {
85 public Server() {
126 * $Log: Server.java,v $
  /external/chromium_org/tools/android/forwarder/
forwarder.cc 90 class Server;
93 ForwarderThreadInfo(Server* a_server, int a_forwarder_index)
94 : server(a_server),
97 Server* server; member in struct:__anon16454::ForwarderThreadInfo
111 class Server {
113 Server()
137 LOG(INFO) << "Server information: " << forward_to_;
174 // 1. Server thread will get a free ForwarderInfo and initialize it;
186 DISALLOW_COPY_AND_ASSIGN(Server);
193 Server* server = thread_info->server; local
257 Server* server = reinterpret_cast<Server*>(arg); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ServerParser.java 32 * Parser for Server header.
45 * @param server the header to parse
47 public ServerParser(String server) {
48 super(server);
60 * parse the String server
61 * @return SIPHeader (Server object)
68 Server server = new Server(); local
70 headerName(TokenTypes.SERVER);
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketImplTest.java 67 Server server = null; local
70 server = new Server();
74 new InetSocketAddress("localhost", server.getPort()));
78 server.start();
92 while (!server.handshakeStarted()) {
100 server.close();
109 if (server != null) {
111 server.close()
127 Server server = null; local
185 Server server = null; local
246 Server server = null; local
306 Server server = null; local
582 private final ServerSocket server; field in class:SSLSocketImplTest.Server
637 Server server = null; local
752 Server server = null; local
857 Server server = null; local
916 Server server = null; local
972 Server server = null; local
1028 Server server = null; local
1058 Server server = null; local
1088 Server server = null; local
1118 Server server = null; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
UnixSelectorTest.java 30 static class Server {
34 Server() throws Exception {
64 Server server = new Server(); local
65 SelectionKey mkey0 = server.serverChannel.register(sel0, SelectionKey.OP_ACCEPT);
66 server.serverChannel.register(sel1, SelectionKey.OP_ACCEPT);
71 server.initialize();
74 server.accept();
80 boolean isConnected = socketChannel.connect(server.socket.getLocalSocketAddress())
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
traffic.js 15 trafficData += 'Client Server Traffic\n';
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 42 ATTRIBUTE MS-Primary-DNS-Server 28 ipaddr Microsoft
43 ATTRIBUTE MS-Secondary-DNS-Server 29 ipaddr Microsoft
44 ATTRIBUTE MS-Primary-NBNS-Server 30 ipaddr Microsoft
45 ATTRIBUTE MS-Secondary-NBNS-Server 31 ipaddr Microsoft
  /external/chromium_org/chrome/test/chromedriver/server/
server.py 13 class Server(object):
14 """A running ChromeDriver server."""
17 """Starts the ChromeDriver server and waits for it to be ready.
32 raise RuntimeError('ChromeDriver server cannot be started')
38 raise RuntimeError('ChromeDriver server did not start')
55 """Returns whether the server is up and running."""
63 """Kills the ChromeDriver server, if it is running."""
  /external/chromium_org/v8/tools/
test-server.py 36 PIDFILE = "/tmp/v8-distributed-testing-server.pid"
44 start Starts the server. Forks to the background.
45 stop Stops the server.
46 restart Stops, then restarts the server.
47 setup Creates or updates the environment for the server to run.
112 # Check out or update the server implementation in the current directory.
114 if os.path.exists(os.path.join(testrunner_dir, "server/daemon.py")):
123 "tools/test-server.py")
142 print("Please stop the server before updating. Exiting.")
153 from testrunner.server import constant
    [all...]
  /external/clang/utils/analyzer/
ubiviz 60 server = xmlrpclib.Server('http://127.0.0.1:20738/RPC2')
61 G = server.ubigraph
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/
MobiCoreDriverDaemon.h 37 #include "Server/public/ConnectionHandler.h"
38 #include "Server/public/Server.h"
125 Server *servers[MAX_SERVERS];

Completed in 672 milliseconds

1 2 3