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

1 2 3 4 5

  /external/jacoco/jacoco-maven-plugin.test/it/it-dump/src/main/java/
Server.java 16 * Simple server which runs as long a termination file is created.
18 public class Server {
21 System.out.println("Test server started");
24 // This option puts the target in a pseudo 'server' mode
33 System.out.println("Test server stopped");
  /device/google/cuttlefish_common/host/libs/usbip/
server.cpp 17 #include "host/libs/usbip/server.h"
27 Server::Server(const std::string& name, const DevicePool& devices)
30 bool Server::Init() { return CreateServerSocket(); }
32 // Open new listening server socket.
34 bool Server::CreateServerSocket() {
35 LOG(INFO) << "Starting server socket: " << name_;
45 void Server::BeforeSelect(cvd::SharedFDSet* fd_read) const {
50 void Server::AfterSelect(const cvd::SharedFDSet& fd_read) {
64 void Server::HandleIncomingConnection()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
server.py 1 """RPC Server module."""
14 class Server:
16 """RPC Server class. Derive a class to implement a particular service."""
117 class SecureServer(Server, Security):
120 apply(Server.__init__, (self,) + args)
  /external/python/cpython2/Demo/pdist/
server.py 1 """RPC Server module."""
14 class Server:
16 """RPC Server class. Derive a class to implement a particular service."""
117 class SecureServer(Server, Security):
120 apply(Server.__init__, (self,) + args)
  /external/toolchain-utils/automation/server/
server.py 14 from automation.server import machine_manager
15 from automation.server.job_group_manager import JobGroupManager
16 from automation.server.job_manager import JobManager
19 class Server(object):
27 dry_run: If True, the server only simulates command execution.
80 """Get server's settings from command line options."""
91 help='Start the server in dry-run mode, where jobs will '
99 logger.SetUpRootLogger(filename='server.log', level=logging.DEBUG)
102 server = Server(options.machines_file, options.dry_run
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 27 // Server returns a new TLS server side connection
31 func Server(conn net.Conn, config *Config) *Conn {
56 return Server(c, l.config), nil
60 // Listener and wraps each connection with Server.
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 27 // Server returns a new TLS server side connection
31 func Server(conn net.Conn, config *Config) *Conn {
56 return Server(c, l.config), nil
60 // Listener and wraps each connection with Server.
  /system/connectivity/wificond/
server.h 45 class Server : public android::net::wifi::BnWificond {
47 Server(std::unique_ptr<wifi_system::InterfaceTool> if_tool,
52 ~Server() override = default;
133 DISALLOW_COPY_AND_ASSIGN(Server);
  /external/boringssl/src/ssl/test/runner/
tls.go 24 // Server returns a new TLS server side connection
28 func Server(conn net.Conn, config *Config) *Conn {
57 c = Server(c, l.config)
62 // Listener and wraps each connection with Server.
  /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/v8/tools/testrunner/server/
main.py 45 class Server(daemon.Daemon):
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
  /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);
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server.go 5 // Implementation of Server
24 // A Server is an HTTP server listening on a system-chosen port on the
26 type Server struct {
31 // after TLS is started. If set on an unstarted server before StartTLS
37 Config *http.Server
42 // wg counts the number of outstanding HTTP requests on this server.
50 // client is configured for use with the server.
72 // When debugging a particular http server-based test,
75 // to start the broken server so you can interact with it manually
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httptest/
server.go 5 // Implementation of Server
24 // A Server is an HTTP server listening on a system-chosen port on the
26 type Server struct {
31 // after TLS is started. If set on an unstarted server before StartTLS
37 Config *http.Server
42 // wg counts the number of outstanding HTTP requests on this server.
50 // client is configured for use with the server.
72 // When debugging a particular http server-based test,
75 // to start the broken server so you can interact with it manually
    [all...]
  /external/autotest/skylab_migration/venv/skylab_venv/scripts/
server_db_sync.py 42 Server = collections.namedtuple('Server',
61 """Raised when failed to sync up server db."""
71 """Dump the server db in to dict.
73 @param cursor: A mysql cursor object to the server db.
78 servers = map(Server._make, cursor.fetchall())
95 """Get the response from inventory server list API.
114 # Parse server tuples, replace notes with note in summaries
121 sub_dict_for_server = {k:d[k].lower() for k in Server._fields}
127 servers.append(Server(**sub_dict_for_server)
    [all...]
  /external/tensorflow/tensorflow/python/training/
server_lib.py 36 `tf.train.ClusterSpec` object, describing the server to be
38 job_name: (Optional.) Specifies the name of the job of which the server
41 task_index: (Optional.) Specifies the task index of the server in its job.
43 defaults to 0 if the server's job has only one task.
44 protocol: (Optional.) Specifies the protocol to be used by the server.
48 options for all sessions that run on this server.
96 @tf_export("train.Server")
97 class Server(object):
98 """An in-process TensorFlow server, for use in distributed training.
100 A `tf.train.Server` instance encapsulates a set of devices and
    [all...]
  /system/bt/service/
gatt_server_old.h 55 // Server.
58 // Server is threadsafe and internally locked.
67 class Server {
69 Server();
70 ~Server();
gatt_server_old.cc 55 // each bluetooth::gatt::Server instance already keeps a pointer to the
66 // 2. Allow creation of Server objects using a factory method that returns
69 // a map and lazily instantiate the Server and invoke the correct callback.
247 g_internal->gatt->server->send_response(conn_id, trans_id, 0, response);
303 g_internal->gatt->server->send_response(conn_id, trans_id, 0, response);
315 g_internal->gatt->server->send_response(conn_id, trans_id, 0, response);
464 /** GATT Server callbacks */
467 /** GATT Server callbacks */
523 gatt->server->delete_service(server_if, service_handle);
524 gatt->server->unregister_server(server_if)
    [all...]
  /external/autotest/frontend/server/
models.py 5 """Django model for server database.
17 class Server(dbmodels.Model, model_logic.ModelExtensions):
18 """Models a server."""
42 """Metadata for class Server."""
47 """A string representation of the Server object.
62 """Get a list of role names of the server.
64 @return: A list of role names of the server.
70 """Get a dictionary with all server details.
80 @return: A dictionary with all server details.
97 # Valid roles for a server
108 server = dbmodels.ForeignKey(Server, related_name='roles') variable in class:ServerRole
120 server = dbmodels.ForeignKey(Server, related_name='attributes') variable in class:ServerAttribute
    [all...]
  /external/boringssl/src/tool/
server.cc 30 "The port of the server to bind on; eg 45102",
65 "The server will continue accepting new sequential connections.",
75 "The server will print connection information in response to a "
84 "The server will require a client certificate.",
206 bool Server(const std::vector<std::string> &args) {
230 // Server authentication is required.
  /external/swiftshader/third_party/subzero/src/
IceBrowserCompileServer.cpp 1 //===- subzero/src/IceBrowserCompileServer.cpp - Browser compile server ---===//
11 /// \brief Defines the browser-based compile server.
189 BrowserCompileServer *Server =
191 Server->setFatalError(Reason);
193 // server thread to remain alive in order to respond with the error message.
  /prebuilts/go/darwin-x86/src/net/rpc/
server.go 7 network or other I/O connection. A server registers an object, making it visible
9 methods of the object will be accessible remotely. A server may register multiple
36 The server may handle requests on a single connection by calling ServeConn. More
54 Here is a simple example. A server wishes to export an object of type Arith:
56 package server
84 The server calls (for HTTP service):
96 "Arith.Divide". To invoke one, a client first dials the server:
106 args := &server.Args{7,8}
122 A server implementation will often provide a simple, type-safe wrapper for the
175 next *Request // for free list in Server
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
server.go 7 network or other I/O connection. A server registers an object, making it visible
9 methods of the object will be accessible remotely. A server may register multiple
36 The server may handle requests on a single connection by calling ServeConn. More
54 Here is a simple example. A server wishes to export an object of type Arith:
56 package server
84 The server calls (for HTTP service):
96 "Arith.Divide". To invoke one, a client first dials the server:
106 args := &server.Args{7,8}
122 A server implementation will often provide a simple, type-safe wrapper for the
175 next *Request // for free list in Server
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Server.java 48 * The main server base class.
50 * This class is responsible for setting up most of the server state
51 * before the actual server subclasses take over.
56 public abstract class Server {
65 Server(int port, int backlog,
78 * If this is a secure server, we now setup the SSLContext we'll
103 "Usage: Server <type> [options]\n"
105 + " B1 Blocking/Single-threaded Server\n"
106 + " BN Blocking/Multi-threaded Server\n"
107 + " BP Blocking/Pooled-Thread Server\n
147 Server server = null; local
171 Server server = createServer(args); local
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Server.java 48 * The main server base class.
50 * This class is responsible for setting up most of the server state
51 * before the actual server subclasses take over.
56 public abstract class Server {
65 Server(int port, int backlog,
78 * If this is a secure server, we now setup the SSLContext we'll
103 "Usage: Server <type> [options]\n"
105 + " B1 Blocking/Single-threaded Server\n"
106 + " BN Blocking/Multi-threaded Server\n"
107 + " BP Blocking/Pooled-Thread Server\n
147 Server server = null; local
171 Server server = createServer(args); local
    [all...]

Completed in 1171 milliseconds

1 2 3 4 5