HomeSort by relevance Sort by last modified time
    Searched defs:Server (Results 1 - 24 of 24) sorted by null

  /external/boringssl/src/tool/
server.cc 27 "The port of the server to bind on; eg 45102",
35 "Private-key file to use (default is server.pem)",
42 bool Server(const std::vector<std::string> &args) {
57 // Server authentication is required.
58 std::string key_file = "server.pem";
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
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...]
  /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 $
  /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);
  /external/v8/tools/testrunner/server/
main.py 45 class Server(daemon.Daemon):
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stm.h 24 IPX_SERVER_ENTRY Server;
dhcpssdk.h 21 DHCP_IP_ADDRESS UNALIGNED *Server;
winevt.h 183 LPWSTR Server;
asptlb.h 110 typedef class Server Server;
112 typedef struct Server Server;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 50 # _listener holds the server object doing the listening
808 Start up a socket server on the specified port, and listen for new
812 Returns a Thread object on which you can call start() to start the server,
813 and which you can join() when appropriate. To stop the server, call
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 50 # _listener holds the server object doing the listening
808 Start up a socket server on the specified port, and listen for new
812 Returns a Thread object on which you can call start() to start the server,
813 and which you can join() when appropriate. To stop the server, call
    [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();
93 while (!server.handshakeStarted()) {
102 server.close();
113 if (server != null) {
115 server.close()
133 Server server = null; local
197 Server server = null; local
264 Server server = null; local
330 Server server = null; local
620 private final ServerSocket server; field in class:SSLSocketImplTest.Server
678 Server server = null; local
797 Server server = null; local
912 Server server = null; local
974 Server server = null; local
1036 Server server = null; local
1098 Server server = null; local
1130 Server server = null; local
1162 Server server = null; local
1194 Server server = null; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/
Server.java 19 package org.eclipse.jetty.server;
32 import org.eclipse.jetty.server.handler.HandlerWrapper;
33 import org.eclipse.jetty.server.nio.SelectChannelConnector;
50 /** Jetty HTTP Servlet Server.
51 * This class is the main class for the Jetty HTTP Servlet server.
53 * The server is itself a handler and a ThreadPool. Connectors use the ThreadPool methods
56 * @org.apache.xbean.XBean description="Creates an embedded Jetty web server"
58 public class Server extends HandlerWrapper implements Attributes
60 private static final Logger LOG = Log.getLogger(Server.class);
65 if (Server.class.getPackage()!=null &
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 94 # Function for communication with a manager's server process
145 # Server which is run in a process controlled by a manager
148 class Server(object):
150 Server class which runs in a process controlled by a manager object
172 Run the server forever
229 util.debug('starting server thread to service %r',
471 _Server = Server
489 Return server object with serve_forever() method and address attribute
492 return Server(self._registry, self._address,
497 Connect manager object to the server proces
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 108 ServerProxy Represents a logical connection to an XML-RPC server
120 Transport Handles an HTTP transaction to an XML-RPC server
121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
964 """server -> a object used to boxcar method calls
966 server should be a ServerProxy object.
980 def __init__(self, server):
981 self.__server = server
1623 server = ServerProxy("http:\/\/time.xmlrpc.com\/RPC2") variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 94 # Function for communication with a manager's server process
145 # Server which is run in a process controlled by a manager
148 class Server(object):
150 Server class which runs in a process controlled by a manager object
172 Run the server forever
229 util.debug('starting server thread to service %r',
471 _Server = Server
489 Return server object with serve_forever() method and address attribute
492 return Server(self._registry, self._address,
497 Connect manager object to the server proces
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 108 ServerProxy Represents a logical connection to an XML-RPC server
120 Transport Handles an HTTP transaction to an XML-RPC server
121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
964 """server -> a object used to boxcar method calls
966 server should be a ServerProxy object.
980 def __init__(self, server):
981 self.__server = server
1623 server = ServerProxy("http:\/\/time.xmlrpc.com\/RPC2") variable
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-settings-3.2.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/sdk/tools/
jack.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 654 milliseconds