/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKMediaCacheManager.cpp | 44 void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManagerRef, WKStringRef hostname) 46 toImpl(mediaCacheManagerRef)->clearCacheForHostname(toWTFString(hostname));
|
WKMediaCacheManager.h | 40 WK_EXPORT void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManager, WKStringRef hostname);
|
/external/webkit/Source/WebKit2/WebProcess/Cookies/ |
WebCookieManager.messages.in | 28 void DeleteCookiesForHostname(WTF::String hostname)
|
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/ |
set-href-attribute-hostname.js | 1 description('Test setting the hostname attribute of the URL in HTMLAnchorElement.'); 7 a.hostname = "www.otherdomain.com"; 12 debug("Extra slashes before hostname"); 14 a.hostname = "//www.otherdomain.com"; 21 debug("Set hostname to URL with foo: protocol"); 23 a.hostname = "www.otherdomain.com"; 27 // Firefox 3.5.2 allows setting the hostname to null, which is wrong per 29 debug("Set hostname to null"); 31 a.hostname = null; 37 debug("Set hostname to empty string") [all...] |
set-href-attribute-whitespace.js | 7 shouldBe("a.hostname", "'www.mydomain.com'"); 11 shouldBe("a.hostname", "'www.mydomain.com'"); 15 shouldBe("a.hostname", "'www.mydomain.com'"); 19 shouldBe("a.hostname", "'www.mydomain.com'"); 23 shouldBe("a.hostname", "'www.mydomain.com'"); 27 shouldBe("a.hostname", "'www.mydomain.com'"); 31 shouldBe("a.hostname", "'www.mydomain.com'"); 35 shouldBe("a.hostname", "'www.mydomain.com'"); 39 shouldBe("a.hostname", "'www.mydomain.com'"); 43 shouldBe("a.hostname", "'www.mydomain.com'") [all...] |
/system/extras/tests/bionic/libc/common/ |
test_gethostbyname.c | 38 char* hostname = "localhost"; local 43 hostname = argv[1]; 45 hent = gethostbyname(hostname); 47 printf("gethostbyname(%s) returned NULL !!\n", hostname); 50 printf( "gethostbyname(%s) returned:\n", hostname);
|
/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/chromium/net/base/ |
cert_verifier.h | 76 // Verifies the given certificate against the given hostname. Returns OK if 102 const std::string& hostname, 127 // |flags| is compared before |cert_fingerprint| and |hostname| under 133 hostname == other.hostname); 137 // |flags| is compared before |cert_fingerprint| and |hostname| under 146 return hostname < other.hostname; 150 std::string hostname; member in struct:net::CertVerifier::RequestParams 155 const std::string& hostname, [all...] |
android_network_library.h | 31 // |hostname| is validated against the supplied cert. |auth_type| is as per 35 const std::string& hostname,
|
/external/dhcpcd/dhcpcd-hooks/ |
Makefile | 7 SCRIPTS+= 10-mtu 20-resolv.conf 29-lookup-hostname 30-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})
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
CertPinManager.java | 66 * Given a hostname and a certificate chain this verifies that the chain includes 72 public boolean chainIsNotPinned(String hostname, List<X509Certificate> chain) 75 PinListEntry entry = lookup(hostname); 126 private synchronized PinListEntry lookup(String hostname) throws PinManagerException { 138 // if so, check the hostname cache 139 String cn = hostnameCache.get(hostname); 146 cn = getMatchingCN(hostname); 148 hostnameCache.put(hostname, cn); 153 // if we got here, we don't have a matching CN for this hostname 161 private String getMatchingCN(String hostname) { [all...] |
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
TcpStream.h | 27 int connect(const char* hostname, unsigned short port);
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented 10 // unicode hostname.
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
TcpStream.h | 27 int connect(const char* hostname, unsigned short port);
|
/system/core/adb/ |
adb_client.h | 32 /* Set TCP Hostname of the transport to use 34 void adb_set_tcp_name(const char* hostname);
|
/external/openssh/ |
dns.c | 141 * Check if hostname is numerical. 142 * Returns -1 if hostname is numeric, 0 otherwise 145 is_numeric_hostname(const char *hostname) 153 if (hostname == NULL) { 154 error("is_numeric_hostname called with NULL hostname"); 162 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) { 171 * Verify the given hostname, address and host key using DNS. 175 verify_host_key_dns(const char *hostname, struct sockaddr *address, 198 if (is_numeric_hostname(hostname)) { 199 debug("skipped DNS lookup for numerical hostname"); [all...] |
sshlogin.c | 78 strlcpy(buf, li.hostname, bufsize); 90 char *time_string, hostname[MAXHOSTNAMELEN] = "", buf[512]; local 103 last_login_time = get_last_login_time(uid, user, hostname, 104 sizeof(hostname)); 109 if (strcmp(hostname, "") == 0) 114 time_string, hostname);
|
/external/chromium/net/url_request/ |
url_request_filter.h | 36 // scheme,hostname -> ProtocolFactory 50 const std::string& hostname, 53 const std::string& hostname);
|
/external/ganymed-ssh2/examples/ |
PortForwarding.java | 26 String hostname = "127.0.0.1"; local 36 Connection conn = new Connection(hostname);
|
/external/webkit/Source/WebKit2/WebProcess/MediaCache/ |
WebMediaCacheManager.cpp | 67 void WebMediaCacheManager::clearCacheForHostname(const String& hostname) 72 HTMLMediaElement::clearMediaCacheForSite(hostname);
|
/external/chromium/android/net/ |
android_network_library_impl.h | 24 const std::string& hostname,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
socketaddress.cc | 64 SocketAddress::SocketAddress(const std::string& hostname, int port) { 65 SetIP(hostname); 104 void SocketAddress::SetIP(const std::string& hostname) { 105 hostname_ = hostname; 106 ip_ = StringToIP(hostname); 316 bool SocketAddress::StringToIP(const std::string& hostname, uint32* ip) { 318 if (inet_aton(hostname.c_str(), &addr) == 0) 324 uint32 SocketAddress::StringToIP(const std::string& hostname) { 326 StringToIP(hostname, &ip); 331 char hostname[256] local 340 const std::string hostname = GetHostname(); local [all...] |
ssladapter.h | 48 virtual int StartSSL(const char* hostname, bool restartable) = 0; 54 // If true, the server certificate need not match the configured hostname.
|