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

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/test/java/libcore/java/security/cert/
PKIXParametersTest.java 28 TestKeyStore server = TestKeyStore.getServer(); local
29 KeyStore.PrivateKeyEntry pke = server.getPrivateKey("RSA", "RSA");
32 // contains CA and server certificates
33 assertEquals(2, new PKIXParameters(server.keyStore).getTrustAnchors().size());
35 // just copy server certificates
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 126 // server port
186 * method will be used for connection to the server
190 MockServer server = new MockServer("server"); local
193 URL url = new URL("http://localhost:" + server.port());
202 server.start();
204 if (!server.started) bound.wait(5000);
213 // wait while server and proxy run
214 server.join();
218 assertTrue("Proxy server was not used", proxy.accepted)
230 MockServer server = new MockServer("server"); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageManager.java 43 * presence then the server will not send a flood with all the offline messages when the user
44 * becomes online. The server will not send a flood with all the offline messages to the session
49 * offline in all the resources then the server will resume storing the messages offline and will
50 * send all the offline messages to the user when he becomes online. Therefore, the server will
72 * Returns true if the server supports Flexible Offline Message Retrieval. When the server
76 * @return a boolean indicating if the server supports Flexible Offline Message Retrieval.
88 * @throws XMPPException If the user is not allowed to make this request or the server does
109 * @throws XMPPException If the user is not allowed to make this request or the server does
127 * from the server. Use {@link #deleteMessages(java.util.List)} to delete the messages
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 124 String clientToServerString = "this is sent from the client to the server...";
125 String serverToClientString = "... and this from the server to the client";
178 SSLSocket server = pair[0]; local
180 server.getOutputStream().write(serverToClient);
186 int readFromClient = server.getInputStream().read(serverFromClient);
192 server.close();
198 + " server=" + serverProvider);
294 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
298 server.startHandshake();
299 assertNotNull(server.getSession())
334 private final SSLSocket server; field in class:SSLSocketTest.SSLServerSessionIdCallable
389 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
426 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
446 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
566 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
594 SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
631 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
686 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
716 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
788 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
835 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
861 SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
873 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
902 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
1002 SSLSocket server = pair.server; local
1119 SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
1160 Socket server = listening.accept(); local
1206 final SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
1257 Socket server = listening.accept(); local
1318 SSLSocket server = (SSLSocket) c.serverSocket.accept(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
macsocketserver_unittest.cc 51 MacCFSocketServer server; local
53 server.Wait(1000, true);
59 MacCFSocketServer server; local
60 WakeThread thread(&server);
63 server.Wait(10000, true);
69 MacCarbonSocketServer server; local
71 server.Wait(1000, true);
77 MacCarbonSocketServer server; local
78 WakeThread thread(&server);
81 server.Wait(10000, true)
87 MacCarbonAppSocketServer server; local
95 MacCarbonAppSocketServer server; local
    [all...]
  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 70 EXPECT_STREQ("channel name (server)", serverChannel->getName().string())
71 << "server channel should have suffixed name";
75 // Server->Client communication
81 << "server channel should be able to send message to client channel";
85 << "client channel should be able to receive message from server channel";
87 << "client channel should receive the correct message from server channel";
89 << "client channel should receive the correct message from server channel";
91 // Client->Server communication
98 << "client channel should be able to send message to server channel";
102 << "server channel should be able to receive message from client channel"
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl.cpp 213 // initialize a connection to the server, and the GLESv1/v2 encoders;
216 ALOGE("couldn't create server connection\n");
363 ServerConnection *server; local
364 if (s_needEncode && (server = ServerConnection::s_getServerConnection()) != NULL) {
365 server->utEnc()->createSurface(server->utEnc(), getpid(), (uint32_t)surface);
375 ServerConnection *server; local
376 if (s_needEncode && (server = ServerConnection::s_getServerConnection()) != NULL) {
377 server->utEnc()->createSurface(server->utEnc(), getpid(), (uint32_t)surface)
387 ServerConnection *server; local
399 ServerConnection *server; local
495 ServerConnection *server; local
515 ServerConnection *server; local
537 ServerConnection *server; local
598 ServerConnection *server; local
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
ViewServer.java 17 package com.android.server.wm;
35 * The ViewServer is local socket server that can be used to communicate with the
37 * {@link com.android.server.wm.WindowManagerService} and is a cross-process operation.
58 // Returns the server version
59 private static final String COMMAND_SERVER_VERSION = "SERVER";
77 * specified local port. The server is not started by default.
80 * @param port The port for the server to listen to.
90 * Starts the server.
92 * @return True if the server was successfully created, or false if it already exists.
93 * @throws IOException If the server cannot be created
    [all...]
  /libcore/crypto/src/test/java/org/conscrypt/
TrustManagerImplTest.java 71 // chain3 should be server/intermediate/root
76 X509Certificate server = chain3[0]; local
77 X509Certificate[] chain2 = new X509Certificate[] { server, intermediate };
78 X509Certificate[] chain1 = new X509Certificate[] { server };
87 assertValid(chain3, trustManager(server));
88 assertValid(chain2, trustManager(server));
89 assertValid(chain1, trustManager(server));
104 // chain3 should be server/intermediate/root
109 X509Certificate server = chain3[0]; local
111 X509Certificate[] chain4 = new X509Certificate[] { server, intermediate
126 X509Certificate server = chain3[0]; local
144 X509Certificate server = chain3[0]; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_server.c 26 ** server thread in a multiple-threaded program. One or more client threads
27 ** send messages to the server thread and the server thread processes those
32 ** prefer the client/server approach.
37 ** the client/server approach, all database connections are created
38 ** and used within the server thread. Client calls to the database
58 ** To summarize the rational for using a client/server approach: prior
62 ** client/server.
68 ** Here is how the client/server approach works: The database server
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_gattc_co.h 33 ** Description This callout function is executed by GATTC when a GATT server
36 ** Parameter server_bda: server bd address of this cache belongs to
51 ** Description This callout function is executed by GATTC when a GATT server
54 ** Parameter server_bda: server bd address of this cache belongs to
66 ** Description This callout function is executed by GATT when a server cache
69 ** Parameter server_bda: server bd address of this cache belongs to
86 ** Description This callout function is executed by GATT when server cache
89 ** Parameter server_bda: server bd address of this cache belongs to
107 ** Parameter server_bda: server bd address of this cache belongs to
  /external/chromium/chrome/browser/autofill/
autofill_metrics.h 36 SERVER_TYPE_UNKNOWN = 0, // The server offered no prediction.
37 SERVER_TYPE_MATCH, // The server predicted correctly.
38 SERVER_TYPE_MISMATCH, // The server predicted incorrectly.
42 PREDICTED_TYPE_UNKNOWN = 0, // Neither server nor heuristics offered a
72 // Each of these is logged at most once per query to the server, which in turn
75 QUERY_SENT = 0, // Sent a query to the server.
77 QUERY_RESPONSE_PARSED, // Successfully parsed the server response.
83 // Our heuristics detected at least one auto-fillable field, and the server
87 // Our heuristics did not detect any auto-fillable fields, but the server
  /external/chromium_org/net/test/spawned_test_server/
local_test_server.h 22 // The LocalTestServer runs an external Python-based test server in the
40 // Start the test server and block until it's ready. Returns true on success.
43 // Start the test server without blocking. Use this if you need multiple test
59 // Block until ths test server is ready. Returns true on success. See
63 // Stop the server started by Start().
74 // Adds the command line arguments for the Python test server to
86 // Launches the Python test server. Returns true on success.
89 // Waits for the server to start. Returns true on success.
92 // Handle of the Python process running the test server.
  /external/ppp/pppd/plugins/radius/etc/
radiusclient.conf 5 # if you specify "radius,local" then the RADIUS server is asked
7 # this server is asked.
29 # RADIUS server to use for authentication requests. this config
32 # server is not answering.
39 # RADIUS server to use for accouting requests. All that I
45 # between the RADIUS client and server
57 # RADIUS server
69 # time to wait for a reply from the RADIUS server
72 # resend request this many times before trying the next server
radiusclient.conf.in 5 # if you specify "radius,local" then the RADIUS server is asked
7 # this server is asked.
29 # RADIUS server to use for authentication requests. this config
32 # server is not answering.
39 # RADIUS server to use for accouting requests. All that I
45 # between the RADIUS client and server
57 # RADIUS server
69 # time to wait for a reply from the RADIUS server
72 # resend request this many times before trying the next server
  /external/smack/src/org/xbill/DNS/tests/
xfrin.java 14 "[-s server] [-p port] [-f] zone");
23 String server = null; local
42 server = args[++arg];
60 if (server == null) {
68 server = ns[0].rdataToString();
69 System.out.println("sending to server '" + server + "'");
74 server, port, key);
76 xfrin = ZoneTransferIn.newAXFR(zname, server, port, key);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/public/
NetlinkServer.h 5 * Connection server.
9 * Iterative socket server using Netlink dgram protocol.
49 #include "Server.h"
51 class NetlinkServer: public Server, public NetlinkConnectionManager
55 * Server contructor.
64 * Server destructor.
72 * Start server and listen for incoming connections.
73 * Implements the central socket server loop. Incoming connections will be stored.
83 * be the server's responsability.
  /libcore/luni/src/main/java/java/net/
SecureCacheResponse.java 48 * the resource data, this certificate chain was sent to the server during
52 * @return the certificate chain that was sent to the server. If no
58 * Gets the cached server's certificate chain. As part of defining the
64 * @return the server's certificate chain.
72 * Gets the server's principle. When the original connection retrieved
76 * @return a principal object representing the server's principal.
84 * Gets the local principle that the original connection sent to the server.
86 * was sent to the server during handshaking process.
88 * @return the local principal object being sent to the server. Returns an
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
browser.h 42 PA_BROWSE_NEW_SERVER = 0, /**< New server found */
45 PA_BROWSE_REMOVE_SERVER, /**< Server disappeared */
68 /** Information about a sink/source/server found with Zeroconf */
72 const char *server; /**< Server name; always available */ member in struct:pa_browse_info
73 const char *server_version; /**< Server version string; optional */
74 const char *user_name; /**< User name of the server process; optional */
75 const char *fqdn; /* Server version; optional */
76 const uint32_t *cookie; /* Server cookie; optional */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 42 PA_BROWSE_NEW_SERVER = 0, /**< New server found */
45 PA_BROWSE_REMOVE_SERVER, /**< Server disappeared */
68 /** Information about a sink/source/server found with Zeroconf */
72 const char *server; /**< Server name; always available */ member in struct:pa_browse_info
73 const char *server_version; /**< Server version string; optional */
74 const char *user_name; /**< User name of the server process; optional */
75 const char *fqdn; /* Server version; optional */
76 const uint32_t *cookie; /* Server cookie; optional */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 42 PA_BROWSE_NEW_SERVER = 0, /**< New server found */
45 PA_BROWSE_REMOVE_SERVER, /**< Server disappeared */
68 /** Information about a sink/source/server found with Zeroconf */
72 const char *server; /**< Server name; always available */ member in struct:pa_browse_info
73 const char *server_version; /**< Server version string; optional */
74 const char *user_name; /**< User name of the server process; optional */
75 const char *fqdn; /* Server version; optional */
76 const uint32_t *cookie; /* Server cookie; optional */
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderServer.cpp 45 RenderServer *server = new RenderServer(); local
46 if (!server) {
51 server->m_listenSock = new TcpStream();
54 server->m_listenSock = new Win32PipeStream();
56 server->m_listenSock = new UnixStream();
61 if (server->m_listenSock->listen(addrstr) < 0) {
63 delete server;
71 delete server;
76 return server;
  /external/chromium_org/chrome/app/resources/
manpage.1.in 43 \fB\-\-proxy-server\fR=\fIhost:port\fR
44 Specify the HTTP/SOCKS4/SOCKS5 proxy server to use for requests. This
46 An individual proxy server is specified using the format:
50 Where <proxy-scheme> is the protocol of the proxy server, and is one of:
59 --proxy-server="foopy:99"
62 --proxy-server="socks://foobar:1080"
65 --proxy-server="socks4://foobar:1080"
68 --proxy-server="socks5://foobar:66"
71 It is also possible to specify a separate proxy server for different URL types,
72 by prefixing the proxy server specifier with a URL specifier
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
webserver.py 53 """Internal server that throws if timed out waiting for a request."""
56 """Starts the server.
58 It is an HTTP server if parameter server_cert_and_key_path is not provided.
59 Otherwise, it is an HTTPS server.
63 if it is None, start the server as an HTTP one.
66 """Internal handler that just asks the server to handle the request."""
93 """Returns the base URL of the server."""
101 """An HTTP or HTTPS server that serves on its own thread.
107 """Starts the server.
109 It is an HTTP server if parameter server_cert_and_key_path is not provided
    [all...]
  /external/chromium_org/net/http/
http_server_properties_impl.h 29 // The implementation for setting/retrieving the HTTP server properties.
82 // Returns true if |server| supports SPDY.
83 virtual bool SupportsSpdy(const HostPortPair& server) const OVERRIDE;
85 // Add |server| into the persistent store.
86 virtual void SetSupportsSpdy(const HostPortPair& server,
89 // Returns true if |server| has an Alternate-Protocol header.
90 virtual bool HasAlternateProtocol(const HostPortPair& server) const OVERRIDE;
92 // Returns the Alternate-Protocol and port for |server|.
93 // HasAlternateProtocol(server) must be true.
95 const HostPortPair& server) const OVERRIDE
    [all...]

Completed in 862 milliseconds

1 2 3 4 5 6 7 891011>>