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

1 2

  /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);
TestLatency.java 75 Server server = Network.createServer(5110); local
76 server.start();
87 //System.out.println("Time received by server: " + timeMsg.timeReceived);
105 server.addMessageListener(new MessageListener<HostedConnection>(){
  /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-trace/trace-viewer/
run_dev_server.py 22 if self.server.next_deps_check < current_time:
24 self.server.next_deps_check = current_time + DEPS_CHECK_DELAY
28 class Server(BaseHTTPServer.HTTPServer):
41 server = Server(('', options.port), Handler)
43 server.serve_forever()
  /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...]
  /external/apache-harmony/nio/src/test/java/unix/org/apache/harmony/nio/tests/java/nio/channels/
UnixSelectorTest.java 30 static class Server {
34 Server() throws Exception {
76 Server server = new Server(); local
77 SelectableChannel serverChannel = server.getServerChannel();
84 server.initialize();
87 server.accept();
89 int port = server.getPort();
100 server.close()
    [all...]
  /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/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];
  /external/quake/quake/src/QW/
qwsv.spec.sh 22 Summary: QuakeWorld Server
38 to a special server.
63 %attr(644,root,root) ${3}/qw/server.qc
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 65 private Server server; field in class:ObjectStore
95 public void connectionAdded(Server server, HostedConnection conn) {
99 public void connectionRemoved(Server server, HostedConnection conn) {
136 public ObjectStore(Server server) {
137 this.server = server;
    [all...]

Completed in 1369 milliseconds

1 2