HomeSort by relevance Sort by last modified time
    Searched full:server (Results 226 - 250 of 7791) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/test/embedded_test_server/
embedded_test_server.h 44 // Class providing an HTTP server for testing purpose. This is a basic server
83 // Creates a http test server. |io_thread| is a task runner
85 // InitializeAndWaitUntilReady() must be called to start the server.
90 // Initializes and waits until the server is ready to accept requests.
93 // Shuts down the http server and waits until the shutdown is complete.
96 // Checks if the server is started.
101 // Returns the base URL to the server, which looks like
103 // the server.
106 // Returns a URL to the server based on the given relative URL, whic
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
gardeningserver.py 81 PIPE = self.server.tool.executive.PIPE
82 process = self.server.tool.executive.popen([self.server.tool.path()] + command, cwd=self.server.tool.scm().checkout_root, stdin=PIPE, stdout=PIPE, stderr=PIPE)
88 self._serve_xml(self.server.tool.executive.run_command(['svn', 'log', '--xml', '--limit', self.REVISION_LIMIT, self.BLINK_SVN_URL]))
91 deps_contents = self.server.tool.executive.run_command(['svn', 'cat', self.CHROMIUM_SVN_DEPS_URL])
104 if self.server.options.results_directory:
105 command.extend(['--results-directory', self.server.options.results_directory])
106 if not self.server.options.optimize:
108 if self.server.options.verbose
    [all...]
  /external/chromium_org/tools/python/google/httpd_config/
httpd2_linux.conf 34 ## Server-Pool Size Regulation (MPM specific)
38 # StartServers: number of server processes to start
39 # MinSpareServers: minimum number of server processes which are kept spare
40 # MaxSpareServers: maximum number of server processes which are kept spare
41 # MaxClients: maximum number of server processes allowed to start
42 # MaxRequestsPerChild: maximum number of requests a server process serves
52 # StartServers: initial number of server processes to start
56 # ThreadsPerChild: constant number of worker threads in each server process
57 # MaxRequestsPerChild: maximum number of requests a server process serves
85 # DefaultType is the default MIME type the server will use for a documen
    [all...]
  /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...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 29 * a pair of connected and handshaked client and server SSLEngines for
34 public final SSLEngine server; field in class:TestSSLEnginePair
38 SSLEngine server,
41 this.server = server;
55 * Create a new connected server/client engine pair within a
77 SSLEngine server = c.serverContext.createSSLEngine(); local
79 server.setUseClientMode(false);
80 hooks.beforeBeginHandshake(client, server);
82 server.beginHandshake()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocket_unittest.cc 222 // Create server
223 AsyncSocket* server = ss_->CreateAsyncSocket(initial_addr.family(), local
225 sink.Monitor(server);
226 EXPECT_NE(0, server->Listen(5)); // Bind required
227 EXPECT_EQ(0, server->Bind(initial_addr));
228 EXPECT_EQ(server->GetLocalAddress().family(), initial_addr.family());
229 EXPECT_EQ(0, server->Listen(5));
230 EXPECT_EQ(server->GetState(), AsyncSocket::CS_CONNECTING);
232 // No pending server connections
233 EXPECT_FALSE(sink.Check(server, testing::SSE_READ))
289 AsyncSocket* server = ss_->CreateAsyncSocket(initial_addr.family(), local
321 AsyncSocket* server = ss_->CreateAsyncSocket(initial_addr.family(), local
722 AsyncSocket* server = ss_->CreateAsyncSocket(server_addr.family(), local
    [all...]
  /external/smack/src/org/jivesoftware/smack/
Connection.java 48 * XMPP server and implements shared methods which are used by the
51 * To create a connection to a XMPP server a simple usage of this API might
54 * // Create a connection to the igniterealtime.org XMPP server.
56 * // Connect to the server
69 * // Disconnect from the server
79 * you can use {@link #connect()} to manually connect to the server.
104 * <li> Client Traffic -- raw XML traffic generated by Smack and sent to the server.
105 * <li> Server Traffic -- raw XML traffic sent by the server to the client.
106 * <li> Interpreted Packets -- shows XML packets from the server as parsed by Smack
    [all...]
Connection.java.orig 48 * XMPP server and implements shared methods which are used by the
51 * To create a connection to a XMPP server a simple usage of this API might
54 * // Create a connection to the igniterealtime.org XMPP server.
56 * // Connect to the server
69 * // Disconnect from the server
79 * you can use {@link #connect()} to manually connect to the server.
104 * <li> Client Traffic -- raw XML traffic generated by Smack and sent to the server.
105 * <li> Server Traffic -- raw XML traffic sent by the server to the client.
106 * <li> Interpreted Packets -- shows XML packets from the server as parsed by Smack
    [all...]
AccountManager.java 40 * Allows creation and management of accounts on an XMPP server.
51 * Flag that indicates whether the server supports In-Band Registration.
53 * was advertised from the server then try sending an IQ packet to discover if In-Band
61 * @param connection a connection to a XMPP server.
68 * Sets whether the server supports In-Band Registration. In-Band Registration may be
69 * advertised as a stream feature. If no stream feature was advertised from the server
72 * @param accountCreationSupported true if the server supports In-Band Registration.
79 * Returns true if the server supports creating new accounts. Many servers require
81 * behavior is to only create new accounts before having logged in to a server.
83 * @return true if the server support creating new accounts
    [all...]
SASLAuthentication.java 37 * to the connection and establishing a session with the server.</p>
40 * register with the server, authenticate using Non-SASL or authenticate using SASL. If the
41 * server supports SASL then Smack will first try to authenticate using SASL. But if that
44 * <p>The server may support many SASL mechanisms to use for authenticating. Out of the box
52 * then the server will assign a resource for the connection. In case a resource is passed
53 * then the server will receive the desired resource but may assign a modified resource for
56 * <p>Once a resource has been binded and if the server supports sessions then Smack will establish
77 * Boolean indication if SASL authentication has failed. When failed the server may end
84 * The SASL related error condition if there was one provided by the server.
131 * to authenticate using the most prefered SASL mechanism that is also supported by the server.
    [all...]
SASLAuthentication.java.orig 37 * to the connection and establishing a session with the server.</p>
40 * register with the server, authenticate using Non-SASL or authenticate using SASL. If the
41 * server supports SASL then Smack will first try to authenticate using SASL. But if that
44 * <p>The server may support many SASL mechanisms to use for authenticating. Out of the box
52 * then the server will assign a resource for the connection. In case a resource is passed
53 * then the server will receive the desired resource but may assign a modified resource for
56 * <p>Once a resource has been binded and if the server supports sessions then Smack will establish
77 * Boolean indication if SASL authentication has failed. When failed the server may end
84 * The SASL related error condition if there was one provided by the server.
131 * to authenticate using the most prefered SASL mechanism that is also supported by the server.
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
sync.proto 5 // Sync protocol for communication between sync client and server.
56 // Server implementations are obligated to preserve the contents of
59 // to update the server.
65 // client-generated ID. If the commit succeeds, the server will generate
68 // |id_string| is always the server generated ID. The original
76 // in the message. In all other situations, it is a server ID.
80 // old_parent_id is only set in commits and indicates the old server
87 // maintained by for each item. If zero in a CommitMessage, the server
89 // new server ID and an initial version number. If nonzero in a
91 // the server will use |id_string| to locate the item. Then, if the item'
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_endtoend.py 51 # Special message that tells the echo server to start closing handshake
54 # If you want to use external server to run end to end tests, set following
145 # Don't send close message on channel id 1 so that server-initiated
157 """An end-to-end test that launches pywebsocket standalone server as a
159 checks if the server behaves correctly by exchanging opening handshake and
180 # TODO(toyoshim): Eliminate launching a standalone server on using
181 # external server.
221 server = self._run_server()
223 # TODO(tyoshino): add some logic to poll the server until it
233 self._kill_process(server.pid
    [all...]
  /external/chromium_org/sync/tools/testserver/
sync_testserver.py 6 """This is a python sync server used for testing Chrome Sync.
31 """An HTTP server that handles sync commands."""
136 """Handler for the main HTTP sync server."""
166 The syncer sometimes checks server reachability by examining /time.
199 if not self.server.GetAuthenticated():
202 self.server.server_address[0])
204 http_response, raw_reply = self.server.HandleCommand(
220 http_response, raw_reply = self.server._sync_handler.HandleMigrate(
237 self.server.SetAuthenticated(True)
239 self.server.SetAuthenticated(False
    [all...]
  /external/chromium/chrome/browser/policy/proto/
device_management_backend.proto 27 // Request from device to server to register device.
29 // Reregister device without erasing server state. It can be used
35 // When a client requests for policies, server should verify the
58 // Response from server to device register request.
62 // device to server.
65 // Device display name. By default, server generates the name in
71 // Request from device to server to unregister device.
76 // Response from server to device for unregister request.
85 // watermark last read from server if available.
100 // This is the last policy timestamp that client received from server
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
README 4 This is a Google App Engine server which serves the documentation for Chrome
10 Developing the Server
12 You shouldn't need app engine locally to develop the server, preview.py should
25 Deploying the Server
36 server directory so that they get uploaded to App Engine.
38 3. Run appcfg.py (supplied with the App Engine SDK) to upload the server code:
  /external/chromium_org/chrome/test/functional/perf/
endure_server.py 6 """Start an HTTP server which serves Chrome Endure graphs.
12 run this script to start a local HTTP server that serves the directory
18 Start a server which serves the default location
22 Start a server which serves /home/user/Document/graph_dir which
57 """Start an HTTP server which serves Chrome Endure graphs."""
68 logging.info('Press Ctrl-C to stop the server.')
  /external/chromium_org/rlz/lib/
lib_values.h 21 // Event responses from the server look like:
28 // RLZ responses from the server look like (without spaces):
40 // A server response setting / confirming the DCC will look like (no spaces):
43 // Each ping to the server must also contain kProtocolCgiArgument as well.
70 // Financial ping server information.
86 // as those used/understood by the server.
  /external/dropbear/debian/
dropbear.README.Debian 6 will be set up so that the server does not start by default.
15 binary you will need to be able to retrieve files from a server
29 1. Stop the OpenSSH server
31 2. Prevent the OpenSSH server from starting in the future
36 4. Restart the Dropbear server.
49 times out. The dropbear server writes a notice to the logs when it
  /external/chromium_org/tools/python/google/
httpd_utils.py 6 """A class to help start/stop a local apache http server."""
36 # Server is up and responding.
62 """Starts a local server on port 8000 using the basic configuration files.
65 document_root: If present, specifies the document root for the server;
67 output_dir: If present, specifies where to put server logs; otherwise,
99 """Calls the platform's stop command on a newly created server, forcing it
125 the server has been successfully started.
127 with server as well as stopped when server is stopped.
145 logging.info('Starting http server')
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 25 'license_path': '%(server)s/chromewebstore/v1/licenses/%(appid)s/%(userid)s',
31 # Check to see if the server has been deployed. In the dev server, this
36 # Valid access levels that may be returned by the license server.
41 to the license server.
47 The server's response as text.
50 'server': CONFIG['license_server'],
89 logging.debug('Got license server response: %s' % json)
93 license['message'] = 'Could not parse the license server response'
115 # server requires an OpenI
    [all...]
  /external/chromium/net/test/
openssl_helper.cc 16 // Server Name Indication callback from OpenSSL
195 SSL* server = SSL_new(ctx); local
197 SSL_set_bio(server, bio, bio);
200 SSL_set_session_id_context(server, (unsigned char*) &connections,
206 const int ret = SSL_accept(server);
210 err = SSL_get_error(server, ret);
215 server, !snap_start_recovery);
231 SSL_get0_next_proto_negotiated(server, &data, &len);
247 int ret = SSL_read(server, buffer, sizeof(buffer));
249 err = SSL_get_error(server, ret)
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
enterprise_metrics.h 12 // Events related to fetching, saving and loading DM server tokens.
20 // A token fetch request was sent to the DM server.
24 // Error HTTP status received, or the DM server failed in another way.
31 // DM server reported that management is not supported.
33 // DM server reported that the given device ID was not found.
43 // DM server reported that the device-id generated is not unique.
45 // DM server reported that the serial number we try to register is invalid.
47 // DM server reported that the licenses for the domain have expired or been
61 // A policy fetch request was sent to the DM server.
65 // Error HTTP status received, or the DM server failed in another way
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 25 'license_path': '%(server)s/chromewebstore/v1/licenses/%(appid)s/%(userid)s',
31 # Check to see if the server has been deployed. In the dev server, this
36 # Valid access levels that may be returned by the license server.
42 to the license server.
48 The server's response as text.
51 'server': CONFIG['license_server'],
91 logging.debug('Got license server response: %s' % json)
95 license['message'] = 'Could not parse the license server response'
118 # server requires an OpenI
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_requester.h 25 // Class for requesting CloudPrint server and parsing responses.
35 // Invoked when server respond for registration-start query and response is
42 // Invoked when server respond for registration-getAuthCode query and
56 // Invoked when server respond with |"success" = false| or we cannot parse
63 // Invoked when server error is received or cannot parse json response.
80 // Invoked when printjob is marked as done on CloudPrint server.
94 // Creates query to server for starting registration.
112 // Reports server that printjob has been printed.
147 // Parses register-start server response.
150 // Parses register-complete server response. Initializes gaia (OAuth client
    [all...]

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 91011>>