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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/net/
test_server_locations.h 10 // Hostname used for the NetworkStats test. Should point to a TCP/UDP server
15 // server running server.py from http://code.google.com/p/http-pipelining-test/
  /external/chromium_org/jingle/notifier/base/
server_information.h 5 // A utility struct for storing the information for an XMPP server.
19 ServerInformation(const net::HostPortPair& server,
26 net::HostPortPair server; member in struct:notifier::ServerInformation
  /external/chromium_org/third_party/pyftpdlib/
README.chromium 1 Name: Python FTP server library
10 Python FTP server library provides an high-level portable interface to easily
12 pyftpdlib is currently the most complete RFC-959 FTP server implementation
  /external/smack/src/org/xbill/DNS/
NSRecord.java 6 * Name Server Record - contains the name server serving the named zone
24 * @param target The name server for the given domain
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 35 private MockWebServer server = new MockWebServer(); field in class:MockWebServerTest
38 server.shutdown();
101 server.enqueue(new MockResponse().setBody("hello world"));
102 server.play();
104 URL url = server.getUrl("/");
112 RecordedRequest request = server.takeRequest();
118 server.play();
119 server.enqueue(new MockResponse()
121 .addHeader("Location: " + server.getUrl("/new-path"))
123 server.enqueue(new MockResponse().setBody("This is the new location!"))
    [all...]
  /external/chromium_org/net/test/spawned_test_server/
spawner_communicator.h 21 // SpawnerCommunicator communicates with a spawner server that runs on a
24 // The test server used by unit tests is written in Python. However, Android
25 // does not support running Python code, so the test server cannot run on the
28 // The actual test server is executed on the host machine, while the unit tests
29 // themselves continue running on the device. To control the test server on the
30 // host machine, a second HTTP server is started, the spawner server, which
32 // net::SpawnedTestServer are then redirected to the spawner server via
37 // (1) Start Python test server, format is:
40 // Data to server: all arguments needed to launch the Python test server, i
    [all...]
  /development/samples/ToyVpn/
_index.html 3 <p>This application consists of an Android client and a sample implementation of a server. It performs IP over UDP and is capable of doing seamless handover between different networks as long as it receives the same VPN parameters.</p>
5 <p>The sample code of the server-side implementation is Linux-specific and is available in the <code>server</code> directory. To run the server or port it to another platform, please see comments in the code for the details.</p>
  /development/samples/WiFiDirectDemo/assets/
sample_file.txt 3 Once the devices are connected, the server i.e. groupOwner will listen for incoming connections and write this file.
  /external/chromium_org/chrome/common/extensions/docs/
OWNERS 7 # For server related things (Python, JavaScript, templates, etc).
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/
peerconnection.scons 59 'server/data_socket.cc',
60 'server/main.cc',
61 'server/peer_channel.cc',
62 'server/utils.cc',
  /external/chromium_org/third_party/openssl/
openssl-chromium.config 4 # Location of Android source git server, used to retrieve configuration
8 # The exact commit used to checkout sources from the git server.
15 # OpenSSL server. Note that <version> is automatically taken from
17 # git server.
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
AttrTextHints.java 18 * The server knows the file is a text file, and should be opened
24 * The server has applied a heuristic or other mechanism and
31 * The server knows the file has binary content.
36 * The server has applied a heuristic or other mechanism and
  /external/smack/src/org/jivesoftware/smack/
UserAuthentication.java 26 * There are two ways to authenticate a user with a server. Using SASL or Non-SASL
36 * Authenticates the user with the server. This method will return the full JID provided by
37 * the server. The server may assign a full JID with a username and resource different than
43 * @param username the requested username (authorization ID) for authenticating to the server
47 * @return the full JID provided by the server while binding a resource for the connection.
54 * Authenticates the user with the server. This method will return the full JID provided by
55 * the server. The server may assign a full JID with a username and resource different than
61 * @param username the username that is authenticating with the server.
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
readme.txt 1 The contacts in this example were created on a device that was synchronized to the server.
  /external/chromium_org/remoting/jingle_glue/
jingle_info_request.cc 48 for (const buzz::XmlElement* server =
50 server != NULL;
51 server = server->NextNamed(buzz::QN_JINGLE_INFO_SERVER)) {
52 std::string host = server->Attr(buzz::QN_JINGLE_INFO_HOST);
53 std::string port_str = server->Attr(buzz::QN_JINGLE_INFO_UDP);
71 for (const buzz::XmlElement* server =
73 server != NULL;
74 server = server->NextNamed(buzz::QN_JINGLE_INFO_SERVER))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
http_server_base_unittest.py 43 server = HttpServerBase(test_port)
44 server._pid_file = '/tmp/pidfile'
45 server._spawn_process = lambda: 4
46 server._is_server_running_on_all_ports = lambda: True
48 host.filesystem.write_text_file(server._pid_file, 'foo')
49 server.stop()
50 self.assertEqual(host.filesystem.files[server._pid_file], None)
52 host.filesystem.write_text_file(server._pid_file, 'foo')
53 server.start()
54 self.assertEqual(server._pid, 4
    [all...]
  /system/core/adb/
test_track_devices.c 1 /* a simple test program, connects to ADB server, and opens a track-devices session */
56 struct sockaddr_in server; local
61 memset( &server, 0, sizeof(server) );
62 server.sin_family = AF_INET;
63 server.sin_port = htons(5037);
64 server.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
67 ret = connect( s, (struct sockaddr*) &server, sizeof(server) );
68 if (ret < 0) panic( "could not connect to server" );
    [all...]
test_track_jdwp.c 1 /* a simple test program, connects to ADB server, and opens a track-devices session */
56 struct sockaddr_in server; local
61 memset( &server, 0, sizeof(server) );
62 server.sin_family = AF_INET;
63 server.sin_port = htons(5037);
64 server.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
67 ret = connect( s, (struct sockaddr*) &server, sizeof(server) );
68 if (ret < 0) panic( "could not connect to server" );
    [all...]
  /external/chromium_org/tools/symsrc/
README.chromium 1 These files are related to the symbol and source server.
4 source server support, copy the following files to this directory:
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 9 certificate_type x509 "server.crt" "server.key";
racoon.conf-radius 9 certificate_type x509 "server.crt" "server.key";
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSessions.java 26 * client/server pair of SSLSession as well as an invalid SSLSession.
36 * The server side of a connected session
38 public final SSLSession server; field in class:TestSSLSessions
47 * the client and server SSLSessions.
52 SSLSession server,
56 this.server = server;
71 return new TestSSLSessions(invalid, s.server.getSession(), s.client.getSession(), s);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketTest.java 121 ServerThread server = new ServerThread(); local
122 server.serverSocketConstructor = ssConsType;
123 Thread serverThread = new Thread(server);
125 server.waitCreated();
187 ServerSocket server = new ServerSocket(); local
188 server.bind(theAddress);
189 int sport = server.getLocalPort();
194 Socket worker = server.accept();
196 "Returned Remote address from server connected to does not match expected local address",
201 server.close()
259 ServerSocket server = new ServerSocket(0); local
341 ServerSocket server = new ServerSocket(0); local
442 ServerSocket server = new ServerSocket(0); local
512 ServerSocket server = new ServerSocket(0); local
533 ServerSocket server = new ServerSocket(0); local
569 ServerSocket server = new ServerSocket(0); local
587 ServerSocket server = new ServerSocket(0); local
604 ServerSocket server = new ServerSocket(0); local
615 ServerSocket server = new ServerSocket(0); local
660 ServerSocket server = new ServerSocket(0); local
676 ServerSocket server = new ServerSocket(0); local
699 ServerSocket server = new ServerSocket(0); local
710 ServerSocket server = new ServerSocket(0); local
728 ServerSocket server = new ServerSocket(0); local
741 ServerSocket server = new ServerSocket(0); local
799 ServerSocket server = new ServerSocket(0); local
888 ServerSocket server = new ServerSocket(0); local
899 ServerSocket server = new ServerSocket(0); local
915 ServerSocket server = new ServerSocket(0); local
951 ServerSocket server = new ServerSocket(0); local
960 ServerSocket server = new ServerSocket(0); local
970 ServerSocket server = new ServerSocket(0); local
979 ServerSocket server = new ServerSocket(0); local
1005 ServerSocket server = new ServerSocket(0); local
1050 ServerSocket server = new ServerSocket(0); local
1081 ServerSocket server = new ServerSocket(0); local
1116 ServerSocket server = new ServerSocket(0); local
1153 ServerSocket server = new ServerSocket(0); local
1205 ServerSocket server = new ServerSocket(0, 5, localHost); local
1415 ServerSocket server = new ServerSocket(0); local
1439 ServerSocket server = new ServerSocket(0); local
1471 ServerSocket server = new ServerSocket(0); local
1485 ServerSocket server = new ServerSocket(0); local
1495 ServerSocket server = new ServerSocket(0); local
1504 ServerSocket server = new ServerSocket(0); local
1545 ServerSocket server = new ServerSocket(0); local
1588 ServerSocket server = new ServerSocket(0); local
1626 ServerSocket server = new ServerSocket(0); local
    [all...]
  /external/chromium/net/base/
ssl_client_auth_cache.cc 21 const std::string& server,
25 AuthCacheMap::iterator iter = cache_.find(server);
33 void SSLClientAuthCache::Add(const std::string& server,
35 cache_[server] = value;
40 void SSLClientAuthCache::Remove(const std::string& server) {
41 cache_.erase(server);
  /external/chromium/net/udp/
udp_socket.h 20 // Accessor API for a UDP socket in either client or server form.
23 // In this case, we're connecting to a specific server, so the client will
25 // Connect(address) // Connect to a UDP server
28 // Server form:
30 // to this server. First the server 'binds' to an addres, then we read from

Completed in 384 milliseconds

1 23 4 5 6 7 8 91011>>