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

<<11121314151617181920>>

  /external/chromium_org/components/autofill/core/browser/
field_types.h 15 // NOTE: This list MUST not be modified. The server aggregates and stores these
17 // Autofill server, which is itself backward-compatible. The list must be kept
18 // up to date with the Autofill server list.
20 // The list of all field types natively understood by the Autofill server. A
23 // Server indication that it has no data for the requested field.
48 // by the server.
103 // server.
  /external/chromium_org/net/socket/
ssl_client_socket.h 60 // Next Protocol Negotiation (NPN) allows a TLS client and server to come to
66 kNextProtoUnsupported = 0, // The server doesn't support NPN.
81 // Get the application level protocol that we negotiated with the server.
88 // *server_protos is set to the server advertised protocols.
99 // construct a comma separated string of server advertised protocols.
117 // server bound certificates are not supported.
133 // Protocol that we negotiated with the server.
  /external/chromium_org/tools/playback_benchmark/
proxy_handler.py 29 def __init__(self, rfile, wfile, server):
32 self.server = server
53 "Request handler class for proxy server"
61 server = self.path.split(':')[0]
62 certificate_file = os.path.join(self.certificate_directory, server)
64 sys.stderr.write('request to connect %s is ignored\n' % server)
  /external/dropbear/
auth.h 2 * Dropbear - a SSH2 server
33 /* Server functions */
76 /* This structure is shared between server and client - it contains
78 * server */
87 client and server (though has differing [obvious]
89 unsigned perm_warn : 1; /* Server only, set if bad permissions on
93 /* These are only used for the server */
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestChatServer.java 39 * A simple test chat server. When SM implements a set
49 public static final String NAME = "Test Chat Server";
63 // Use this to test the client/server name version check
64 Server server = Network.createServer(NAME, VERSION, PORT, UDP_PORT); local
65 server.start();
68 server.addMessageListener(handler, ChatMessage.class);
TestRemoteCall.java 39 import com.jme3.network.Server;
52 * Interface implemented by the server, exposing
57 * Attaches the model with the given name to the server's scene.
94 Server server = Network.createServer(5110); local
95 server.start();
97 ObjectStore store = new ObjectStore(server);
  /external/smack/src/org/jivesoftware/smack/
PacketReader.java 37 * Listens for XML traffic from the XMPP server and parses it into packet objects.
92 * Starts the packet reader thread and returns once a connection to the server
96 * @throws XMPPException if the server fails to send an opening stream back
115 throw new XMPPException("Connection failed. No response from server.");
156 * to be sent by the server.
200 // server is not XMPP 1.0 compliant otherwise make the
207 // Use the server name that the server says that it is.
223 // to be sent by the server
229 // TLS negotiation has failed. The server will close the connectio
    [all...]
  /frameworks/base/core/java/android/util/
NtpTrustedTime.java 27 * {@link TrustedTime} that connects with a remote NTP server as its trusted
46 private NtpTrustedTime(String server, long timeout) {
47 if (LOGD) Log.d(TAG, "creating NtpTrustedTime using " + server);
48 mServer = server;
67 final String server = secureServer != null ? secureServer : defaultServer; local
68 sSingleton = new NtpTrustedTime(server, timeout);
77 // missing server, so no trusted time available
  /frameworks/base/core/tests/coretests/src/android/net/http/
HttpResponseCacheTest.java 35 private MockWebServer server = new MockWebServer(); field in class:HttpResponseCacheTest
45 server.shutdown();
115 server.enqueue(new MockResponse()
118 server.play();
120 URLConnection c1 = server.getUrl("/").openConnection();
126 URLConnection c2 = server.getUrl("/").openConnection();
129 URLConnection c3 = server.getUrl("/").openConnection();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 125 // create the SSL server socket acting as a server
156 // create the SSL server socket acting as a server
188 // create the SSLServerSocket which will be used by server side
233 // create the SSLServerSocket which will be used by server side
310 // create the SSLServerSocket which will be used by server side
340 * Tests the behaviour in case of sending the data to the server.
346 // create the SSLServerSocket which will be used by server side
370 * Tests HTTPS connection process made through the proxy server
755 ServerWork server = new ServerWork(serverSocket, responseCode, doAuthentication); local
    [all...]
  /external/chromium_org/chrome/test/functional/media/
cns_test_base.py 5 """Constrained network server (CNS) test base."""
46 # to the external CNS server. Default to False since all current bots use an
59 # Used for server sanity check.
67 """CNS test base hadles startup and teardown of CNS server."""
70 """Initialize CNSTestBase by setting the arguments for CNS server.
84 """Ensures the Constrained Network Server (CNS) server is up and running."""
91 """Ensures the test can connect to the external CNS server."""
99 """Starts the CNS server locally."""
110 logging.debug('Starting CNS server: %s ', ' '.join(cmd)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 57 * Provides utility methods for communicating with the server.
97 * Connects to the SampleSync test server, authenticates the provided
100 * @param username The server account username
101 * @param password The server account password
102 * @return String The authentication token returned by the server (or null)
148 * Perform 2-way sync with the server-side contacts. We send a request that
149 * includes all the locally-dirty contacts so that the server can process
151 * updated on the server-side that need to be updated locally.
156 * @param serverSyncState A token returned from the server on the last sync
157 * @param dirtyContacts A list of the contacts to send to the server
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 65 private Server server; field in class:ObjectStore
95 public void connectionAdded(Server server, HostedConnection conn) {
99 public void connectionRemoved(Server server, HostedConnection conn) {
136 public ObjectStore(Server server) {
137 this.server = server;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 35 * Handles multiple simultaneous IRC server connections.
36 * Handles server PONGing transparently.
37 * Messages to the IRC server are done by calling methods on an IRC
39 * Messages from an IRC server triggers events, which can be caught
41 * Reading from and writing to IRC server sockets are normally done
49 * A kind of simple, single-server, object-oriented IRC client class
55 * Data is not written asynchronously to the server, i.e. the write()
82 # send data asynchronously to the server (and DCC connections)
87 # connection.quit() only sends QUIT to the server.
88 # ERROR from the server triggers the error event and the disconnect event
164 def server(self): member in class:IRC
    [all...]
  /frameworks/base/docs/html/google/gcm/
gs.jd 16 <li><a href="#server">Writing the Server Code</a></li>
34 <p>Note that a full GCM implementation requires a server-side implementation, in addition to the client implementation in your app. This document offers a complete example that includes both the client and server.</p>
70 <li>Click <strong>Create new Server key</strong>. Either a server key or a browser key should work. The advantage to using a server key is that it allows you to whitelist IP addresses. The following screen appears:</li><br />
73 <img src="{@docRoot}images/gcm/gcm-config-server-key.png" style="width:400px;padding:4px;margin-bottom:0em;">
87 <p>The following sections walk you through the steps of creating client and server-side code.</p>
91 <p>This section walks you through the steps involved in writing a client-side application&mdash;that is, the GCM-enabled application that runs on an Android device. This client sample is designed to work in conjunction with the server code shown in <a href="#server">Writing the Server Code</a>, below.</p
    [all...]
  /external/chromium_org/chrome/browser/net/
network_stats.h 35 // In the experiments, clients request the server to send some probing packets,
46 // 1. |START_PACKET_TEST|: 21 packets are sent from the server to the client
49 // 21 packets are sent from the server to the client with or without pacing.
51 // 3. |NAT_BIND_TEST|: 2 packets are sent from the server to the client with
59 SUCCESS, // Successfully received bytes from the server.
62 CONNECT_FAILED, // Connection to the server failed.
63 WRITE_FAILED, // Sending a message to the server failed.
64 READ_TIMED_OUT, // Reading the reply from the server timed out.
65 READ_FAILED, // Reading the reply from the server failed.
89 // Start the client and connect to |server|
    [all...]
  /external/chromium_org/net/udp/
udp_socket_unittest.cc 48 // to send to. Otherwise, will send to the last socket this server
132 // Setup the server to listen.
136 scoped_ptr<UDPServerSocket> server(
138 server->AllowAddressReuse();
139 int rv = server->Listen(bind_address);
154 // Client sends to the server.
158 // Server waits for message.
159 std::string str = RecvFromSocket(server.get());
162 // Server echoes reply.
163 rv = SendToSocket(server.get(), simple_message)
    [all...]
  /external/openssh/
kex.c 286 choose_enc(Enc *enc, char *client, char *server)
288 char *name = match_list(client, server, NULL);
290 fatal("no matching cipher found: client %s server %s",
291 client, server);
303 choose_mac(Mac *mac, char *client, char *server)
305 char *name = match_list(client, server, NULL);
307 fatal("no matching mac found: client %s server %s",
308 client, server);
320 choose_comp(Comp *comp, char *client, char *server)
322 char *name = match_list(client, server, NULL)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ssl.py 359 self.fail("No server certificate on svn.python.org:443!")
367 self.fail("Got server certificate %s for svn.python.org!" % pem)
371 self.fail("No server certificate on svn.python.org:443!")
415 def __init__(self, server, connsock):
416 self.server = server
425 if self.server.certreqs == ssl.CERT_REQUIRED:
427 if test_support.verbose and self.server.chatty:
430 if test_support.verbose and self.server.chatty:
433 if test_support.verbose and self.server.chatty
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ssl.py 359 self.fail("No server certificate on svn.python.org:443!")
367 self.fail("Got server certificate %s for svn.python.org!" % pem)
371 self.fail("No server certificate on svn.python.org:443!")
415 def __init__(self, server, connsock):
416 self.server = server
425 if self.server.certreqs == ssl.CERT_REQUIRED:
427 if test_support.verbose and self.server.chatty:
430 if test_support.verbose and self.server.chatty:
433 if test_support.verbose and self.server.chatty
    [all...]
  /external/chromium_org/content/browser/
site_per_process_browsertest.cc 227 // Load cross-site server-redirect page into Iframe,
230 "server-redirect?" + http_url.spec()));
238 // Load cross-site server-redirect page into Iframe,
241 "server-redirect?files/title1.html"));
250 // Load same-site server-redirect page into Iframe,
253 "server-redirect?" + https_url.spec()));
286 // Load same-site server-redirect page into Iframe,
289 "server-redirect?files/title1.html"));
361 // Load server-redirect page pointing to a cross-site server-redirect page
    [all...]
  /external/ppp/pppd/plugins/radius/
buildreq.c 63 void rc_buildreq(SEND_DATA *data, int code, char *server, unsigned short port,
66 data->server = server;
155 * with the value_pairs send and submits it to a server
157 * Returns: received value_pairs in received, messages from the server in msg
165 SERVER *authserver = rc_conf_srv("authserver");
178 * with the value_pairs send and submits it to a server. You
179 * explicitly supply a server list.
181 * Returns: received value_pairs in received, messages from the server in msg
186 int rc_auth_using_server(SERVER *authserver
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 1 """Self documenting XML-RPC Server.
7 server.
24 """Class used to generate pydoc HTML document for a server"""
110 """Produce HTML documentation for an XML-RPC server."""
135 """Generates documentation for an XML-RPC server.
143 self.server_name = 'XML-RPC Server Documentation'
145 "This server exports the following methods through the XML-RPC "\
147 self.server_title = 'XML-RPC Server Documentation'
150 """Set the HTML title of the generated server documentation"""
155 """Set the name of the generated HTML server documentation""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 1 """Self documenting XML-RPC Server.
7 server.
24 """Class used to generate pydoc HTML document for a server"""
110 """Produce HTML documentation for an XML-RPC server."""
135 """Generates documentation for an XML-RPC server.
143 self.server_name = 'XML-RPC Server Documentation'
145 "This server exports the following methods through the XML-RPC "\
147 self.server_title = 'XML-RPC Server Documentation'
150 """Set the HTML title of the generated server documentation"""
155 """Set the name of the generated HTML server documentation""
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
proxy.json 13 "description": "An object encapsulating a single proxy server's specification.",
15 "scheme": {"type": "string", "optional": true, "enum": ["http", "https", "socks4", "socks5"], "description": "The scheme (protocol) of the proxy server itself. Defaults to 'http'."},
16 "host": {"type": "string", "description": "The URI of the proxy server. This must be an ASCII hostname (in Punycode format). IDNA is not supported, yet."},
17 "port": {"type": "integer", "optional": true, "description": "The port of the proxy server. Defaults to a port that depends on the scheme."}
25 "singleProxy": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for all per-URL requests (that is http, https, and ftp)."},
26 "proxyForHttp": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for HTTP requests."},
27 "proxyForHttps": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for HTTPS requests."},
28 "proxyForFtp": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for FTP requests."},
29 "fallbackProxy": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for everthing else or if any of the specific proxyFor... is not specified."},
30 "bypassList": {"type": "array", "items": {"type": "string"}, "optional": true, "description": "List of servers to connect to without a proxy server."
    [all...]

Completed in 601 milliseconds

<<11121314151617181920>>