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

1 2 3

  /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");
  /system/webservd/libwebserv/
server.h 46 // Top-level wrapper class around HTTP server and provides an interface to
47 // the web server.
48 class LIBWEBSERV_EXPORT Server {
50 Server() = default;
51 virtual ~Server() = default;
57 // to expose a callback D-Bus object the web server calls back with incoming
60 // server comes up and down.
62 // Note that you can use the returned Server instance as if the webserver
66 static std::unique_ptr<Server> ConnectToServerViaDBus(
78 // server comes up and down
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
bundle_image 2 from boto.manage.server import Server
20 s = Server.find(instance_id=instance_id).next()
21 print "Found old server object"
23 print "New Server Object Created"
24 s = Server.create_from_instance_id(instance_id, options.name)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
test_manage.py 1 from boto.manage.server import Server
9 print('--> Creating New Server')
10 server_list = Server.create()
11 server = server_list[0] variable
12 print(server)
14 print('----> Waiting for Server to start up')
15 while server.status != 'running':
18 print('----> Server is running')
20 print('--> Run "df -k" on Server')
    [all...]
volume.py 25 from boto.manage.server import Server
87 server = ReferenceProperty(Server, collection_name='volumes', variable in class:Volume
88 verbose_name='Server Attached To')
156 if self.server:
157 return self.server.ec2
180 if self.server:
181 self.server.install('xfsprogs xfsdump')
200 def attach(self, server=None)
    [all...]
  /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)",
86 bool Server(const std::vector<std::string> &args) {
101 // Server authentication is required.
102 std::string key_file = "server.pem";
  /system/webservd/webservd/
server.cc 15 #include "webservd/server.h"
79 Server::Server(ExportedObjectManager* object_manager, const Config& config,
92 Server::~Server() {}
94 void Server::RegisterAsync(
105 base::Bind(&Server::OnFirewallServiceOnline,
109 sequencer->GetHandler("Failed exporting Server.", true));
118 void Server::OnFirewallServiceOnline() {
134 std::string Server::Ping()
    [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 $
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
AuthCacheValue.java 42 Server
59 * Proxy or Server
69 * name of server/proxy
74 * portnumber of server/proxy
  /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/chromium-trace/catapult/telemetry/third_party/webpagereplay/
certutils_test.py 28 class Server(BaseHTTPServer.HTTPServer):
82 with Server(ca_cert_path) as server:
83 cert_str = certutils.get_host_cert('localhost', server.server_port)
sslproxy_test.py 76 self.server.error_function = certutils.Error
96 class Server(BaseHTTPServer.HTTPServer):
97 """SSL server."""
172 with Server(self.ca_cert_path) as server:
173 c = Client(self.cert_path, self.verify_cb, server.server_port, '')
177 with Server(self.ca_cert_path) as server:
178 c = Client(self.cert_path, self.verify_cb, server.server_port, 'foo.com')
181 c = Client(self.cert_path, self.verify_cb, server.server_port
    [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.cpp 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.
144 g_internal->gatt->server->add_service(
200 g_internal->gatt->server->send_response(conn_id, trans_id, 0, &response);
256 g_internal->gatt->server->send_response(conn_id, trans_id, 0, &response);
268 g_internal->gatt->server->send_response(conn_id, trans_id, 0, &response);
476 /** GATT Server callbacks */
515 return gatt->server->add_characteristic(
532 gatt->server->delete_service(server_if, service_handle)
    [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
114 server = dbmodels.ForeignKey(Server, related_name='roles') variable in class:ServerRole
126 server = dbmodels.ForeignKey(Server, related_name='attributes') variable in class:ServerAttribute
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
order.py 27 from boto.mashups.server import Server, ServerSet
199 server = Server()
200 server.name = item.name
201 server.instance_id = i.id
202 server.reservation = r
203 server.save()
204 s.append(server)
server.py 22 High-level abstraction of an EC2 server
41 for server in self:
43 val = getattr(server, name)
60 class Server(Model):
71 Returns a list of Server instances, one for each Server object
76 for server in rs:
77 l.append(server)
90 super(Server, self).__init__(id, **kw)
125 instance = property(getInstance, setReadOnly, None, 'The Instance for the server')
    [all...]
  /external/v8/tools/testrunner/server/
main.py 45 class Server(daemon.Daemon):
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
  /external/avahi/avahi-daemon/
dbus-internal.h 32 typedef struct Server Server;
168 struct Server {
185 extern Server *server;
simple-protocol.c 63 typedef struct Server Server;
74 Server *server; member in struct:Client
93 struct Server {
103 static Server *server = NULL; variable
110 assert(c->server->n_clients >= 1);
111 c->server->n_clients--;
122 c->server->poll_api->watch_free(c->watch)
    [all...]
  /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;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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...]

Completed in 691 milliseconds

1 2 3