HomeSort by relevance Sort by last modified time
    Searched refs:hostname (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/webkit/WebCore/platform/network/chromium/
DNSChromium.cpp 33 void prefetchDNS(const String& hostname)
35 ChromiumBridge::prefetchDNS(hostname);
  /external/webkit/WebCore/platform/network/curl/
DNSCurl.cpp 33 void prefetchDNS(const String& hostname)
  /external/webkit/WebCore/platform/network/
DNS.h 33 void prefetchDNS(const String& hostname);
  /system/extras/tests/bionic/libc/common/
test_gethostname.c 9 char hostname[512]; local
12 ret = gethostname(hostname, sizeof(hostname));
18 printf("gethostname() returned '%s'\n", hostname);
test_gethostbyname.c 10 char* hostname = "localhost"; local
15 hostname = argv[1];
17 hent = gethostbyname(hostname);
19 printf("gethostbyname(%s) returned NULL !!\n", hostname);
22 printf( "gethostbyname(%s) returned:\n", hostname);
  /external/webkit/WebCore/platform/network/qt/
DnsPrefetchHelper.cpp 27 void prefetchDNS(const String& hostname)
31 dnsPrefetchHelper.lookup(QString(hostname));
DnsPrefetchHelper.h 38 void lookup(QString hostname)
40 if (hostname.isEmpty())
45 QTime* entryTime = lookupCache.object(hostname);
48 lookupCache.remove(hostname);
53 lookupCache.insert(hostname, tmpTime);
55 QHostInfo::lookupHost(hostname, this, SLOT(lookedUp(QHostInfo)));
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
HostnameVerifier.java 21 * The interface to be used to provide hostname verification functionality.
24 * during a handshake if the URL's hostname does not match the peer's
25 * identification hostname.
29 * Verifies that the specified hostname is allowed within the specified SSL
32 * @param hostname
33 * the hostname.
36 * @return {@code true} if the specified hostname is allowed, otherwise
39 boolean verify(String hostname, SSLSession session);
  /external/webkit/WebCore/platform/network/soup/
DNSSoup.cpp 36 void prefetchDNS(const String& hostname)
39 String uri = "http://"+hostname;
  /external/apache-http/src/org/apache/http/
HttpHost.java 56 protected final String hostname; field in class:HttpHost
73 * @param hostname the hostname (IP or DNS name)
80 public HttpHost(final String hostname, int port, final String scheme) {
82 if (hostname == null) {
85 this.hostname = hostname;
86 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH);
98 * @param hostname the hostname (IP or DNS name
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
InetSocketAddress.java 31 private String hostname; field in class:InetSocketAddress
69 hostname = addr.getHostName();
75 * hostname {@code host}. The hostname is tried to be resolved and cannot be
82 * the specified hostname to which this socket is bound.
100 hostname = host;
110 addr = InetAddress.getByName(hostname);
111 hostname = null;
122 * hostname into an {@code InetAddress}. The address field is marked as
126 * the specified hostname to which this socket is bound
    [all...]
AddressCache.java 81 * Returns the cached addresses associated with 'hostname'. Returns null if nothing is known
82 * about 'hostname'. Returns an empty array if 'hostname' is known not to exist.
84 public InetAddress[] get(String hostname) {
87 entry = map.get(hostname);
99 * Associates the given 'addresses' with 'hostname'. The association will expire after a
102 public void put(String hostname, InetAddress[] addresses) {
118 map.put(hostname, new AddressCacheEntry(addresses, expiryNanos));
123 * Records that 'hostname' is known not to have any associated addresses. (I.e. insert a
126 public void putUnknownHost(String hostname) {
    [all...]
  /external/apache-http/src/org/apache/http/conn/scheme/
HostNameResolver.java 39 InetAddress resolve (String hostname) throws IOException;
  /development/tools/axl/
udpEater.py 33 hostname = socket.gethostname()
34 ip = socket.gethostbyname(hostname)
udpServer.py 13 # hostname = socket.gethostname()
14 hostname = "localhost"
15 ip = socket.gethostbyname(hostname)
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 23 hostname=${4}
34 hostname=${DNSMASQ_OLD_HOSTNAME}
42 if [ ${hostname} ]; then
43 ports=$(sed -n -e "/^${hostname}\ .*/ s/^.* //p" ${PORTSFILE})
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 98 mHostnameField = (EditText)findViewById(R.id.hostname);
116 String hostname = null; local
120 hostname = Proxy.getDefaultHost();
124 hostname = Proxy.getHost(this);
128 if (hostname == null) {
129 hostname = "";
132 mHostnameField.setText(hostname);
151 * validate syntax of hostname and port entries
154 int validate(String hostname, String port) {
155 Matcher match = HOSTNAME_PATTERN.matcher(hostname);
185 String hostname = mHostnameField.getText().toString().trim(); local
    [all...]
  /external/webkit/WebCore/platform/network/cf/
DNSCFNet.cpp 124 void DNSResolveQueue::resolve(const String& hostname)
128 RetainPtr<CFStringRef> hostnameCF(AdoptCF, hostname.createCFString());
147 void prefetchDNS(const String& hostname)
150 if (hostname.isEmpty())
152 DNSResolveQueue::shared().add(hostname);
  /external/bluetooth/glib/tests/
uri-test.c 40 char *hostname; member in struct:__anon1432
186 to_uri_tests[i].hostname,
233 gchar *hostname; local
240 &hostname,
291 if (hostname != NULL)
293 g_print ("\ng_filename_from_uri() test %d failed, expected no hostname, got: %s\n",
294 i, hostname);
298 else if (hostname == NULL ||
299 strcmp (hostname, from_uri_tests[i].expected_hostname) != 0)
301 g_print ("\ng_filename_from_uri() test %d failed, expected hostname: %s, actual result: %s\n"
355 gchar *uri, *hostname, *res; local
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
Makefile 3 SYSTEMSCRIPTS= 01-test 10-mtu 20-resolv.conf 30-hostname
  /external/dnsmasq/src/
helper.c 113 char *p, *action_str, *hostname = NULL; local
255 hostname = (char *)buf;
256 hostname[data.hostname_len - 1] = 0;
257 if (!legal_hostname(hostname))
258 hostname = NULL;
259 else if ((dot = strchr(hostname, '.')))
266 if (data.action == ACTION_OLD_HOSTNAME && hostname)
268 my_setenv("DNSMASQ_OLD_HOSTNAME", hostname, &err);
269 hostname = NULL;
282 action_str, daemon->dhcp_buff, inet_ntoa(data.addr), hostname, (char*)NULL)
    [all...]
  /external/dropbear/
fake-rfc2553.c 150 getaddrinfo(const char *hostname, const char *servname,
175 if (hostname && inet_aton(hostname, &in) != 0)
183 if (!hostname) {
190 if (inet_aton(hostname, &in)) {
201 hp = gethostbyname(hostname);
loginrec.h 135 char hostname[LINFO_HOSTSIZE]; /* remote hostname */ member in struct:logininfo
154 const char *hostname, const char *line);
159 const char *hostname, const char *line);
  /external/webkit/WebCore/page/
Location.h 53 String hostname() const;
  /external/webkit/WebCore/workers/
WorkerLocation.h 55 String hostname() const;

Completed in 1038 milliseconds

1 2 3 4 5 6