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

1 2 3 4 5 6

  /system/webservd/webservd/
dbus_request_handler.h 28 class Server;
34 DBusRequestHandler(Server* server,
42 Server* server_{nullptr};
server.h 29 #include "dbus_bindings/org.chromium.WebServer.Server.h"
40 // Top-level D-Bus object to interface with the server as a whole.
41 class Server final : public org::chromium::WebServer::ServerInterface,
44 Server(brillo::dbus_utils::ExportedObjectManager* object_manager,
48 ~Server();
101 base::WeakPtrFactory<Server> weak_ptr_factory_{this};
102 DISALLOW_COPY_AND_ASSIGN(Server);
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...]
  /system/webservd/libwebserv/
server.cc 15 #include <libwebserv/server.h>
30 unique_ptr<Server> Server::ConnectToServerViaDBus(
36 DBusServer* server = new DBusServer; local
37 unique_ptr<Server> ret(server);
38 server->Connect(bus, service_name, cb, on_server_online, on_server_offline);
44 std::unique_ptr<Server> ConnectToServerViaBinder(
48 return unique_ptr<Server>(new BinderServer(
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/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Main.java 20 import org.mortbay.jetty.Server;
25 * Starts the example web server on port 8080. Run from "./struts2/example".
30 Server server = new Server(); local
34 server.setConnectors(new Connector[] { connector });
37 server.addHandler(webapp);
39 server.start();
40 server.join();
  /external/jetty/src/java/org/eclipse/jetty/server/jmx/
ServerMBean.java 19 package org.eclipse.jetty.server.jmx;
22 import org.eclipse.jetty.server.Handler;
23 import org.eclipse.jetty.server.Server;
24 import org.eclipse.jetty.server.handler.ContextHandler;
32 private final Server server; field in class:ServerMBean
38 server = (Server)managedObject;
43 return server.getChildHandlersByClass(ContextHandler.class)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
AbstractHandler.java 19 package org.eclipse.jetty.server.handler;
24 import org.eclipse.jetty.server.Handler;
25 import org.eclipse.jetty.server.Server;
40 private Server _server;
73 public void setServer(Server server)
75 Server old_server=_server;
76 if (old_server!=null && old_server!=server)
78 _server=server;
    [all...]
HotSwapHandler.java 19 package org.eclipse.jetty.server.handler;
27 import org.eclipse.jetty.server.Handler;
28 import org.eclipse.jetty.server.Request;
29 import org.eclipse.jetty.server.Server;
80 Server server = getServer(); local
81 handler.setServer(server);
84 if (server != null)
85 server.getContainer().update(this,old_handler,handler,"handler")
    [all...]
ShutdownHandler.java 19 package org.eclipse.jetty.server.handler;
27 import org.eclipse.jetty.server.Request;
28 import org.eclipse.jetty.server.Server;
34 * A handler that shuts the server down on a valid request. Used to do "soft" restarts from Java. If _exitJvm ist set to true a hard System.exit() call is being
42 Server server = new Server(8080);
45 { someOtherHandler, new ShutdownHandler(server,&quot;secret password&quot;) });
46 server.setHandler(handlers)
    [all...]
  /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...]
  /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/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");
  /external/autotest/site_utils/
server_manager.py 5 """This module provides functions to manage servers in server database
9 Create a server with given role, with status backup.
12 Delete a server from the database. If the server is in primary status, its
13 roles will be replaced by a backup server first.
17 Modify a server's role, status, note, or attribute:
18 1. Add role to a server. If the server is in primary status, proper actions
20 2. Delete a role from a server. If the server is in primary status, prope
    [all...]
server_manager_unittest.py 13 from autotest_lib.frontend.server import models as server_models
62 server_models.Server,
64 'status': server_models.Server.STATUS.PRIMARY,
68 server_models.Server,
70 'status': server_models.Server.STATUS.BACKUP,
74 server_models.Server,
76 'status': server_models.Server.STATUS.PRIMARY,
80 server_models.Server,
82 'status': server_models.Server.STATUS.BACKUP,
89 self.mox.StubOutWithMock(server_models.Server, 'get_role_names'
    [all...]
server_manager_actions.py 5 """This module provides utility functions to help managing servers in server
8 After a role is added or removed from a server, certain services may need to
10 added to a primary server. This module includes functions to check if actions
19 from autotest_lib.frontend.server import models as server_models
24 # Actions that must be executed for server management action to be effective.
45 # is added to the server, or the server's status is changed to primary.
59 # Action should be taken before role is deleted from a server, or the server's
68 # Action should be taken after role is deleted from a server, or the server'
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/
Handler.java 19 package org.eclipse.jetty.server;
27 import org.eclipse.jetty.server.handler.HandlerCollection;
28 import org.eclipse.jetty.server.handler.HandlerWrapper;
33 /** A Jetty Server Handler.
35 * A Handler instance is required by a {@link Server} to handle incoming
66 public void setServer(Server server);
67 public Server getServer();
  /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
  /system/webservd/test-client/
main.cc 21 #include <libwebserv/server.h>
42 using libwebserv::Server;
84 webserver_ = Server::ConnectToServerViaDBus(
90 webserver_ = Server::ConnectToServerViaBinder(
108 std::unique_ptr<Server> webserver_;
  /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)
  /system/bt/service/
gatt_server_old.h 55 // Server.
58 // Server is threadsafe and internally locked.
67 class Server {
69 Server();
70 ~Server();
  /external/autotest/server/site_tests/bluetooth_RegressionServer/
bluetooth_RegressionServer.py 8 from autotest_lib.server import autotest
9 from autotest_lib.server import hosts
10 from autotest_lib.server import test
14 """Server part of the Bluetooth Semi-Automatic Regression Tests."""
18 """Run Server side of Bluetooth Regression tests.
33 logging.info('Starting reboot from Server')
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmjoin.h 45 NET_API_STATUS WINAPI NetAddAlternateComputerName(LPCWSTR Server,LPCWSTR AlternateName,LPCWSTR DomainAccount,LPCWSTR DomainAccountPassword,ULONG Reserved);
46 NET_API_STATUS WINAPI NetRemoveAlternateComputerName(LPCWSTR Server,LPCWSTR AlternateName,LPCWSTR DomainAccount,LPCWSTR DomainAccountPassword,ULONG Reserved);
47 NET_API_STATUS WINAPI NetSetPrimaryComputerName(LPCWSTR Server,LPCWSTR PrimaryName,LPCWSTR DomainAccount,LPCWSTR DomainAccountPassword,ULONG Reserved);
53 NET_API_STATUS WINAPI NetEnumerateComputerNames(LPCWSTR Server,NET_COMPUTER_NAME_TYPE NameType,ULONG Reserved,PDWORD EntryCount,LPWSTR **ComputerNames);
  /external/jetty/src/java/org/eclipse/jetty/security/
Authenticator.java 27 import org.eclipse.jetty.server.Authentication;
28 import org.eclipse.jetty.server.Authentication.User;
29 import org.eclipse.jetty.server.Server;
61 * @return An Authentication. If Authentication is successful, this will be a {@link org.eclipse.jetty.server.Authentication.User}. If a response has
63 * implement {@link org.eclipse.jetty.server.Authentication.ResponseSent}. If Authentication is not manditory, then a
64 * {@link org.eclipse.jetty.server.Authentication.Deferred} may be returned.
120 Authenticator getAuthenticator(Server server, ServletContext context, AuthConfiguration configuration, IdentityService identityService, LoginService loginService);

Completed in 378 milliseconds

1 2 3 4 5 6