/external/chromium/chrome/browser/extensions/ |
extension_websocket_apitest.cc | 16 ui_test_utils::TestWebSocketServer server; local 17 ASSERT_TRUE(server.Start(websocket_root_dir));
|
/external/chromium/net/test/ |
test_server.h | 34 // This object bounds the lifetime of an external python-based HTTP/FTP server 47 // Container for various options to control how the HTTPS server is 56 // Bitmask of bulk encryption algorithms that the test server supports 59 // Special value used to indicate that any algorithm the server supports 67 // NOTE: 3DES support in the Python test server has external 98 // HTTPS server, or BULK_CIPHER_ANY to indicate that all implemented 113 // Stop the server started by Start(). 142 // Launches the Python test server. Returns true on success. 145 // Waits for the server to start. Returns true on success. 148 // Parses the server data read from the test server. Returns tru [all...] |
/external/chromium_org/chrome/test/chromedriver/net/ |
test_http_server.h | 16 #include "net/server/http_server.h" 23 // HTTP server for web socket testing purposes that runs on its own thread. 39 // Creates an http server. By default it accepts WebSockets and echoes 44 // Starts the server. Returns whether it was started successfully. 47 // Stops the server. May be called multiple times. 60 // Returns the web socket URL that points to the server. 79 // Access only on the server thread. 82 // Access only on the server thread.
|
/external/chromium_org/content/public/browser/ |
download_interrupt_reason_values.h | 69 // The server has gone down. 70 // "Server Down". 74 // Server responses. 76 // The server indicates that the operation has failed (generic). 77 // "Server Error". 80 // The server does not support range requests. 85 // Internal use only: the file has changed on the server. 88 // The server does not have the requested data.
|
/external/chromium_org/jingle/notifier/base/ |
notification_method.h | 16 // Server-issued notifications. The default. 25 // If the given string is not one of "p2p" or "server", returns
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/templates/ |
menu.html | 4 <title>Test Result Server</title> 8 <h1>Test Result Server</h1>
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_root_window_host_observer_x11.h | 17 // Called after we receive a MapNotify event (the X11 server has allocated 21 // Called after we receive an UnmapNotify event (the X11 server has freed
|
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
TestNetworkStress.java | 42 public void connectionAdded(Server server, HostedConnection conn) { 47 public void connectionRemoved(Server server, HostedConnection conn) { 53 Server server = Network.createServer(5110); local 54 server.start(); 55 server.addConnectionListener(new TestNetworkStress());
|
/external/openssh/regress/ |
proto-mismatch.sh | 8 server=$1 10 banner=`echo ${client} | ${SSHD} -o "Protocol=${server}" -i -f ${OBJ}/sshd_proxy`
|
/external/webrtc/test/functional_test/ |
README | 8 1. Single client calling itself with the server test page 9 (peerconnection/samples/server/server_test.html) in loopback mode as a fake 20 3. Open the server test page, ensure loopback is enabled, choose a name (for 21 example "loopback") and connect to the server. 22 4. Open the test page, connect to the server, select the loopback peer, click 28 3. Open the test page, connect to the server. 30 5. Open the test page, connect to the server, select the other peer, click call. 36 Note 2: The web page must normally be on a web server to be able to access the
|
/external/wpa_supplicant_8/hostapd/ |
android.config | 39 # Driver interface for no driver (e.g., RADIUS server only) 57 # Integrated EAP server 60 # EAP-MD5 for the integrated EAP server 63 # EAP-TLS for the integrated EAP server 66 # EAP-MSCHAPv2 for the integrated EAP server 69 # EAP-PEAP for the integrated EAP server 72 # EAP-GTC for the integrated EAP server 75 # EAP-TTLS for the integrated EAP server 78 # EAP-SIM for the integrated EAP server 81 # EAP-AKA for the integrated EAP server [all...] |
/packages/apps/Bluetooth/res/values/ |
test_strings.xml | 11 <string name="start_server">Start TCP server</string> 12 <string name="notify_server">Notify TCP server</string>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 9 * handlers -- base classes for server/gateway implementations 13 * validate -- validation wrapper that sits between an app and a server
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 9 * handlers -- base classes for server/gateway implementations 13 * validate -- validation wrapper that sits between an app and a server
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_test.h | 41 // Tests where only one client profile is synced with the server. Typically 45 // Tests where two client profiles are synced with the server. Typically 49 // Tests where three or more client profiles are synced with the server. 55 // The type of server we're running against. 58 LOCAL_PYTHON_SERVER, // The mock python server that runs locally and is 60 LOCAL_LIVE_SERVER, // Some other server (maybe the real binary used by 63 EXTERNAL_LIVE_SERVER, // A remote server that the test code has no control 69 // the enum defined on the chromiumsync.py test server impl. 74 // Server sends the error on all requests. 77 // Server sends the error on two thirds of the request [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
preview.py | 10 # There are two modes: server- and render- mode. The default is server, in which 21 # and for profiling the server. For example, 29 # Copy all the files necessary to run the server. These are cleaned up when the 30 # server quits. 55 description='Runs a server to preview the extension documentation.', 58 help='port to run the server on') 61 'the server, e.g. apps/storage.html. The path may optionally end ' 106 server = HTTPServer(('', int(opts.port)), _RequestHandler) variable in class:_RequestHandler 108 server.serve_forever( [all...] |
/external/chromium_org/crypto/ |
p224_spake_unittest.cc | 15 P224EncryptedKeyExchange* server) { 20 server_message = server->GetMessage(); 24 server_result = server->ProcessMessage(client_message); 54 P224EncryptedKeyExchange server( 57 EXPECT_TRUE(RunExchange(&client, &server)); 58 EXPECT_EQ(client.GetKey(), server.GetKey()); 65 P224EncryptedKeyExchange server( 69 EXPECT_FALSE(RunExchange(&client, &server)); 78 P224EncryptedKeyExchange server( 89 server_message = server.GetMessage() [all...] |
/external/ppp/pppd/plugins/radius/ |
radrealms.c | 36 SERVER **authserver, 37 SERVER **acctserver); 41 SERVER **authserver, 42 SERVER **acctserver) 46 SERVER *accts, *auths, *s; 50 auths = (SERVER *) malloc(sizeof(SERVER)); 52 accts = (SERVER *) malloc(sizeof(SERVER)); 111 option_error("%s: server address missing on line %d: %s" [all...] |
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/public/ |
Server.h | 5 * Connection server. 9 * Iterative socket server using UNIX domain stream protocol. 54 class Server: public CThread 59 * Server contructor. 64 Server( 70 * Server destructor. 73 virtual ~Server( 78 * Start server and listen for incoming connections. 79 * Implements the central socket server loop. Incoming connections will be stored. 88 * be handled by the server [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
UnixSelectorTest.java | 30 static class Server { 34 Server() throws Exception { 64 Server server = new Server(); local 65 SelectionKey mkey0 = server.serverChannel.register(sel0, SelectionKey.OP_ACCEPT); 66 server.serverChannel.register(sel1, SelectionKey.OP_ACCEPT); 71 server.initialize(); 74 server.accept(); 80 boolean isConnected = socketChannel.connect(server.socket.getLocalSocketAddress()) [all...] |
/external/libnfc-nci/src/nfa/include/ |
nfa_snep_api.h | 55 #define NFA_SNEP_REG_EVT 0x00 /* Server/client Registeration Status */ 61 #define NFA_SNEP_GET_RESP_EVT 0x06 /* GET response from server */ 62 #define NFA_SNEP_PUT_RESP_EVT 0x07 /* PUT response from server */ 69 #define NFA_SNEP_DEFAULT_SERVER_STARTED_EVT 0x0C /* SNEP default server is started */ 70 #define NFA_SNEP_DEFAULT_SERVER_STOPPED_EVT 0x0D /* SNEP default server is stopped */ 80 tNFA_HANDLE reg_handle; /* handle for registered server/client */ 81 char service_name[LLCP_MAX_SN_LEN + 1]; /* only for server */ 95 ** for server, new handle will be assigned for conn_handle 100 tNFA_HANDLE reg_handle; /* server/client handle */ 125 tNFA_SNEP_RESP_CODE resp_code; /* response code from server */ [all...] |
/device/generic/goldfish/data/etc/ |
apns-conf.xml | 28 server="*" 38 server="*" 48 server="*" 58 server="*" 68 server="*" 78 server="*" 88 server="*" 98 server="*" 108 server="*" 118 server="* [all...] |
/external/chromium_org/build/android/ |
lighttpd_server.py | 29 """Wraps lighttpd server, providing robust startup. 32 document_root: Path to root of this server's hosted files. 33 port: TCP port on the _host_ machine that the server will listen on. If 68 # The ports of test server is arranged in constants.py. 73 """Starts up a http server with specified document root and port.""" 107 print 'Server error:', server_error 119 # Wait for server to start 131 r.getheader('Server') == self.server_tag): 138 # Check for server startup error messages 141 if ix == 2: # stdout spew from the server [all...] |
/external/chromium_org/build/android/pylib/base/ |
base_test_runner.py | 25 # A file on device to store ports of net test server. The format of the file is 26 # test-spawner-server-port:test-server-port 27 NET_TEST_SERVER_PORT_INFO_FILE = 'net-test-server-ports' 53 # We will allocate port for test server spawner when calling method 54 # LaunchChromeTestServerSpawner and allocate port for test server when 114 """Launches an HTTP server to serve HTTP tests. 117 document_root: Document root of the HTTP server. 118 port: port on which we want to the http server bind. 119 extra_config_contents: Extra config contents for the HTTP server [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_epoll.py | 63 server, addr = self.serverSocket.accept() 65 self.connections.extend((client, server)) 66 return client, server 88 server, client = self._connected_pair() 92 ep.register(server.fileno(), select.EPOLLIN | select.EPOLLOUT) 100 ep.register(server, select.EPOLLIN | select.EPOLLOUT) 119 ep.register(server, select.EPOLLIN | select.EPOLLOUT) 120 self.assertRaises(IOError, ep.register, server, 126 server, client = self._connected_pair() 131 ep2.register(server.fileno(), select.EPOLLIN | select.EPOLLOUT [all...] |