Searched refs:server (Results 76 - 100 of 550) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc32 const net::HostPortPair& server,
53 const net::HostPortPair& server,
59 server_(server),
127 const net::HostPortPair& server,
133 (new SlotUnlocker(modules, reason, server, parent, callback))->Start();
142 const net::HostPortPair& server,
148 UnlockSlotsIfNecessary(modules, reason, server, parent, callback);
51 SlotUnlocker(const net::CryptoModuleList& modules, chrome::CryptoModulePasswordReason reason, const net::HostPortPair& server, gfx::NativeWindow parent, const base::Closure& callback) argument
125 UnlockSlotsIfNecessary(const net::CryptoModuleList& modules, chrome::CryptoModulePasswordReason reason, const net::HostPortPair& server, gfx::NativeWindow parent, const base::Closure& callback) argument
140 UnlockCertSlotIfNecessary(net::X509Certificate* cert, chrome::CryptoModulePasswordReason reason, const net::HostPortPair& server, gfx::NativeWindow parent, const base::Closure& callback) argument
H A Dcrypto_module_delegate_nss.cc16 const net::HostPortPair& server)
18 server_(server),
101 const net::HostPortPair& server) {
105 return new ChromeNSSCryptoModuleDelegate(reason, server);
14 ChromeNSSCryptoModuleDelegate( chrome::CryptoModulePasswordReason reason, const net::HostPortPair& server) argument
99 CreateCryptoModuleBlockingPasswordDelegate( chrome::CryptoModulePasswordReason reason, const net::HostPortPair& server) argument
/external/chromium_org/net/socket/
H A Dtcp_client_socket_unittest.cc23 // still connect to a server on the same interface.
28 TCPServerSocket server(NULL, NetLog::Source());
29 ASSERT_EQ(OK, server.Listen(IPEndPoint(lo_address, 0), 1));
31 ASSERT_EQ(OK, server.GetLocalAddress(&server_address));
46 int result = server.Accept(&accepted_socket, accept_callback.callback());
87 TCPServerSocket server(NULL, NetLog::Source());
88 int listen_result = server.Listen(IPEndPoint(ipv6_lo_ip, 0), 1);
96 ASSERT_EQ(OK, server.GetLocalAddress(&server_address));
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLEngineImplTest.java75 SSLEngine server = getEngine();
76 initEngines(client, server);
78 doHandshake(client, server);
79 doDataExchange(client, server);
80 doClose(client, server);
90 SSLEngine server = getEngine();
92 initEngines(client, server);
95 // with the server not allowed to session creation
96 doNoRenegotiationTest(client, server, true);
99 server
710 doHandshake(SSLEngine client, SSLEngine server) argument
729 doHandshakeImpl(SSLEngine client, SSLEngine server) argument
1031 doDataExchange(SSLEngine client, SSLEngine server) argument
1128 doClose(SSLEngine client, SSLEngine server) argument
1370 initEngines(SSLEngine client, SSLEngine server) argument
[all...]
/external/chromium_org/build/android/pylib/
H A Dchrome_test_server_spawner.py8 chrome test server on the host.
43 'sync': '', # Sync uses its own script, and doesn't take a server type arg.
49 # The timeout (in seconds) of starting up the Python test server.
86 """Returns the command-line by the given server type.
89 server_type: the server type to be used (e.g. 'http').
95 raise NotImplementedError('Unknown server type: %s' % server_type)
103 """A thread to run the test server in a separate process."""
109 ready_event: event which will be set when the test server is ready.
110 arguments: dictionary of arguments to run the test server.
128 # Anonymous pipe in order to get port info from test server
[all...]
/external/chromium_org/net/http/
H A Dhttp_server_properties.h137 // The interface for setting/retrieving the HTTP server properties.
158 // Returns true if |server| supports SPDY.
159 virtual bool SupportsSpdy(const HostPortPair& server) = 0;
161 // Add |server| into the persistent store. Should only be called from IO
163 virtual void SetSupportsSpdy(const HostPortPair& server,
166 // Returns true if |server| has an Alternate-Protocol header.
167 virtual bool HasAlternateProtocol(const HostPortPair& server) = 0;
169 // Returns the Alternate-Protocol and port for |server|.
170 // HasAlternateProtocol(server) must be true.
172 const HostPortPair& server)
[all...]
H A Dhttp_server_properties_manager.h33 // tracks if a server supports SPDY or not).
37 // persists the changes from network stack whether server supports SPDY or not.
86 // Returns true if |server| supports SPDY. Should only be called from IO
88 virtual bool SupportsSpdy(const HostPortPair& server) OVERRIDE;
90 // Add |server| as the SPDY server which supports SPDY protocol into the
92 virtual void SetSupportsSpdy(const HostPortPair& server,
95 // Returns true if |server| has an Alternate-Protocol header.
96 virtual bool HasAlternateProtocol(const HostPortPair& server) OVERRIDE;
98 // Returns the Alternate-Protocol and port for |server|
[all...]
/external/chromium_org/sandbox/mac/
H A Dxpc_message_server_unittest.cc36 // A MessageDemuxer that manages a test server and executes a block for every
53 // Starts running the server, given a block to handle incoming IPC messages.
77 XPCMessageServer* server() { return &server_; } function in class:sandbox::BlockDemuxer
95 XPCMessageServer* server = fixture.server(); member in namespace:sandbox
100 server->SendReply(server->CreateReply(request));
117 XPCMessageServer* server = fixture.server(); variable
119 server
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dlocal_server.py23 """Starts the actual server and obtains any sockets on which it
39 'The server class\' module must be findable via sys.modules'
42 'The server class must getattrable from its __module__ by its __name__'
146 def StartServer(self, server):
147 assert not server.is_running, 'Server already started'
148 assert isinstance(server, LocalServer)
149 if server.__class__ in self._local_servers_by_class:
154 server.Start(self)
155 self._local_servers_by_class[server.__class__] = server
[all...]
/external/chromium_org/ppapi/native_client/tools/browser_tester/
H A Dbrowser_tester.py23 import browsertester.server namespace
35 default='0', help='The TCP port the server will bind to. '
43 help='Add file SRC to be served from the HTTP server, '
49 'server to be made visible under the root.')
54 'when POSTing data to the server. NOTE: if this flag is '
63 help='Add a redirect to the HTTP server, '
68 help='Add a file to serve from the HTTP server, to be '
75 'serving it from the HTTP server.')
116 'simulate between the client and the server. This used for '
154 '<host> is the name of the browser tester\'s web server
[all...]
/external/wpa_supplicant_8/hs20/server/ca/
H A Dsetup.sh68 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-revoked.csr -keyout server-revoked.key
69 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -in server-revoked.csr -out server-revoked.pem -key $PASS -days 730 -extensions ext_server
70 $OPENSSL ca -revoke server-revoked.pem -key $PASS
77 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-client.csr -keyout server-client.key
78 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -in server-client.csr -out server-client.pem -key $PASS -days 730 -extensions ext_client
102 echo $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -sha256 -new -newkey rsa:2048 -nodes -out server
[all...]
/external/chromium_org/net/quic/
H A Dquic_crypto_server_stream_test.cc156 // Do a first handshake in order to prime the client config with the server's
162 scoped_ptr<QuicCryptoServerStream> server(
164 server_session->SetCryptoStream(server.get());
167 client_conn, client.get(), server_conn, server.get());
175 // We need to advance time past the strike-server window so that it's
189 server.reset(new QuicCryptoServerStream(crypto_config_,
191 server_session->SetCryptoStream(server.get());
197 EXPECT_FALSE(server->handshake_confirmed());
199 // Advance the handshake. Expect that the server will be stuck
202 client_conn, client.get(), 0, server_conn, server
[all...]
H A Dport_suggester.h20 // and hence increase the likelihood that a server's load balancer will direct
21 // a repeated connection to the same server (with QUIC, further increasing the
26 PortSuggester(const HostPortPair& server, uint64 seed);
/external/chromium_org/sync/tools/testserver/
H A Dsync_testserver.py6 """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."""
175 The syncer sometimes checks server reachability by examining /time.
208 if not self.server.GetAuthenticated():
211 self.server.server_address[0])
213 http_response, raw_reply = self.server.HandleCommand(
229 http_response, raw_reply = self.server._sync_handler.HandleMigrate(
246 self.server.SetAuthenticated(True)
248 self.server
[all...]
/external/chromium_org/net/server/
H A Dweb_socket.h28 static WebSocket* CreateWebSocket(HttpServer* server,
47 WebSocket(HttpServer* server, HttpConnection* connection);
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_dispatcher_peer.cc50 const IPEndPoint& server,
53 server,
47 CreateQuicConnection( QuicDispatcher* dispatcher, QuicConnectionId connection_id, const IPEndPoint& server, const IPEndPoint& client) argument
H A Dserver_thread.h17 // Simple wrapper class to run server in a thread.
20 ServerThread(QuicServer* server,
26 // Prepares the server, but does not start accepting connections. Useful for
36 // Pauses execution of the server until Resume() is called. May only be
40 // Resumes execution of the server after Pause() has been called. May only
44 // Stops the server from executing and shuts it down, destroying all
45 // server objects.
48 // Returns the underlying server. Care must be taken to avoid data races
49 // when accessing the server. It is always safe to access the server
51 QuicServer* server() { return server_.get(); } function in class:net::tools::test::ServerThread
[all...]
H A Dserver_thread.cc14 ServerThread::ServerThread(QuicServer* server, argument
23 server_(server),
100 QuicDispatcher* dispatcher = QuicServerPeer::GetDispatcher(server());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dabstractlocalservercommand.py32 server = None variable in class:AbstractLocalServerCommand
37 make_option("--httpd-port", action="store", type="int", default=8127, help="Port to use for the HTTP server"),
38 make_option("--no-show-results", action="store_false", default=True, dest="show_results", help="Don't launch a browser with the rebaseline server"),
49 print "Starting server at %s" % server_url
56 httpd = self.server(httpd_port=options.httpd_port, config=config) # pylint: disable=E1102
/external/deqp/execserver/tools/
H A DxsMain.cpp67 xs::ExecutionServer server(&testProcess, DE_SOCKETFAMILY_INET4, port, runMode);
69 server.runServer();
/external/deqp/execserver/
H A DxsTcpServer.hpp69 ConnectionHandler (TcpServer* server, de::Socket* socket) : m_server(server), m_socket(socket) {} argument
/external/openssl/android.testssl/
H A Dtestssl4 key=../apps/server.pem
9 cert=../apps/server.pem
38 echo test sslv2 with server authentication
45 echo test sslv2 with both client and server authentication
52 echo test sslv3 with server authentication
58 echo test sslv3 with both client and server authentication
64 echo test sslv2/sslv3 with server authentication
70 echo test sslv2/sslv3 with both client and server authentication
73 echo test sslv2/sslv3 with both client and server authentication and handshake cutthrough
79 echo test sslv2 with server authenticatio
[all...]
/external/chromium_org/native_client_sdk/src/tools/
H A Drun.py6 """Launch a local server on an ephemeral port, then launch a executable that
7 points to that server.
27 This command creates a local server on an ephemeral port, then runs:
35 parser.add_option('-P', '--path', help='Path to load from local server.',
44 help='Port to run server on. Default is 5103, ephemeral is 0.',
51 server = httpd.LocalHTTPServer(options.serve_dir, options.port)
52 print 'Serving %s on %s...' % (options.serve_dir, server.GetURL(''))
59 cmd = args + [server.GetURL(options.path)]
81 return server.ServeUntilSubprocessDies(process)
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
H A Dpairingcontext.h32 // @param server whether this client is acting as the pairing server
35 bool server);
46 // Gets the server certificate.
49 // Determines whether this client is the pairing server.
/external/chromium_org/net/test/
H A Dopenssl_helper.cc195 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);
254 SSL_write(server, "goodby
[all...]

Completed in 927 milliseconds

1234567891011>>