HomeSort by relevance Sort by last modified time
    Searched defs:localhost (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/media/cast/test/utility/
net_utility.cc 17 net::IPAddressNumber localhost; local
18 localhost.push_back(127);
19 localhost.push_back(0);
20 localhost.push_back(0);
21 localhost.push_back(1);
28 CHECK_EQ(net::OK, receive_socket->Bind(net::IPEndPoint(localhost, 0)));
  /external/chromium_org/net/websockets/
websocket_throttle_test.cc 292 // For localhost: 127.0.0.1, 127.0.0.1
298 new SocketStream(GURL("ws://localhost/"), w1.get(), &context, NULL));
304 // Trying to open connection to localhost will start without wait.
319 IPAddressNumber localhost; local
320 ParseIPLiteralToNumber("127.0.0.1", &localhost);
325 new SocketStream(GURL("ws://localhost:80/"), w1.get(), &context, NULL));
328 AddressList::CreateFromIPAddress(localhost, 80));
332 // Trying to open connection to localhost:80 will start without waiting.
338 new SocketStream(GURL("ws://localhost:81/"), w2.get(), &context, NULL));
341 AddressList::CreateFromIPAddress(localhost, 81))
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/
SslContextBuilder.java 42 * self-signed certificate for a single hostname such as "localhost".
53 private static SSLContext localhost; // Lazily initialized. field in class:SslContextBuilder
67 /** Returns a new SSL context for this host's current localhost address. */
68 public static synchronized SSLContext localhost() { method in class:SslContextBuilder
69 if (localhost == null) {
71 localhost = new SslContextBuilder(InetAddress.getLocalHost().getHostName()).build();
78 return localhost;
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 67 HostInfo localhost = null; local
104 localhost = new HostInfo(addr, aName, dns);
105 return localhost;
  /external/chromium_org/chrome/browser/extensions/api/cast_streaming/
performance_test.cc 341 net::IPAddressNumber localhost; local
342 localhost.push_back(127);
343 localhost.push_back(0);
344 localhost.push_back(0);
345 localhost.push_back(1);
352 CHECK_EQ(net::OK, receive_socket->Bind(net::IPEndPoint(localhost, 0)));
  /external/lldb/source/Host/common/
Host.cpp 1383 const bool localhost = true; local
    [all...]
  /external/openssl/ssl/
ssltest.c 1091 char localhost[MAXHOSTNAMELEN+2]; local
1093 if (gethostname(localhost, sizeof localhost-1) == 0)
1095 localhost[sizeof localhost-1]='\0';
1096 if(strlen(localhost) == sizeof localhost-1)
1098 BIO_printf(bio_err,"localhost name too long\n");
1102 localhost);
    [all...]

Completed in 411 milliseconds