HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 51 - 75 of 1440) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 45 private final String host; field in class:CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) {
52 if (host == null) {
54 "Host of origin may not be null");
56 if (host.trim().length() == 0) {
58 "Host of origin may not be blank");
67 this.host = host.toLowerCase(Locale.ENGLISH);
78 return this.host;
100 buffer.append(this.host);
    [all...]
  /external/chromium/chrome/browser/history/
visit_tracker.cc 31 VisitID VisitTracker::GetLastVisit(const void* host,
34 if (referrer.is_empty() || !host)
37 HostList::iterator i = hosts_.find(host);
39 return 0; // We don't have any entries for this host.
69 void VisitTracker::AddVisit(const void* host,
73 TransitionList* transitions = hosts_[host];
76 hosts_[host] = transitions;
88 void VisitTracker::NotifyRenderProcessHostDestruction(const void* host) {
89 HostList::iterator i = hosts_.find(host);
91 return; // We don't have any entries for this host
    [all...]
visit_tracker_unittest.cc 14 // Identifies the host, we'll cast this to a pointer when querying (the
16 int host; member in struct:__anon2837::VisitToTest
34 void* host = 0; local
35 memcpy(&host, &id, sizeof(int));
36 return host;
41 // Our host pointer is actually just an int, convert it (it will not get
43 void* host = MakeFakeHost(test[i].host); local
47 host, test[i].page_id, GURL(test[i].referrer));
51 tracker->AddVisit(host, test[i].page_id, GURL(test[i].url)
    [all...]
visit_tracker.h 29 void AddVisit(const void* host,
36 void NotifyRenderProcessHostDestruction(const void* host);
43 VisitID GetLastVisit(const void* host, int32 page_id, const GURL& url);
48 int32 page_id; // ID generated by the render process host.
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog_openssl.cc 13 const std::string& host,
21 const std::string& host,
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
return_unicode.js 2 function FindProxyForURL(url, host) {
simple.js 4 function FindProxyForURL(url, host) {
12 isInNet(host, "10.0.0.0", "255.0.0.0")) {
16 if (dnsDomainIs(host, "foo.bar.baz.com") || !isResolvable(host)) {
unhandled_exception.js 1 function FindProxyForURL(url, host) {
  /external/chromium/net/tools/flip_server/
create_listener.h 19 // host - hostname or numeric address, or empty-string if you want
25 // if you know that the host address has already been looked-up,
40 int CreateListeningSocket(const std::string& host,
51 const std::string& host,
spdy_util.h 16 std::string EncodeURL(std::string uri, std::string host, std::string method);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/win/
WKBundlePrivateWin.h 35 WK_EXPORT void WKBundleSetHostAllowsAnyHTTPSCertificate(WKBundleRef bundle, WKStringRef host);
36 WK_EXPORT void WKBundleSetClientCertificate(WKBundleRef bundle, WKStringRef host, WKStringRef certificateSystemStoreName, WKCertificateInfoRef certificateInfo);
  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.h 28 NinePatchPeeker(SkImageDecoder* host) {
29 // the host lives longer than we do, so a raw ptr is safe
30 fHost = host;
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 38 * The class represents an authentication scope consisting of a host name,
50 * The <tt>null</tt> value represents any host. In the future versions of
71 * Default scope matching any host, port, realm and authentication scheme.
83 /** The host the credentials apply to. */
84 private final String host; field in class:AuthScope
90 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
93 * @param host the host the credentials apply to. May be set
95 * any host.
106 public AuthScope(final String host, int port,
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_host_state.h 20 // The SSLHostState encapulates the host-specific state for SSL errors. For
22 // particular broken cert for use with particular host. We separate this state
31 // Records that a host has run insecure content.
32 void HostRanInsecureContent(const std::string& host, int pid);
34 // Returns whether the specified host ran insecure content.
35 bool DidHostRunInsecureContent(const std::string& host, int pid) const;
37 // Records that |cert| is permitted to be used for |host| in the future.
38 void DenyCertForHost(net::X509Certificate* cert, const std::string& host);
40 // Records that |cert| is not permitted to be used for |host| in the future.
41 void AllowCertForHost(net::X509Certificate* cert, const std::string& host);
    [all...]
  /external/ppp/pppd/plugins/radius/
ip_util.c 23 * Purpose: return an IP address in host long notation from a host
29 UINT4 rc_get_ipaddr (char *host)
33 if (rc_good_ipaddr (host) == 0)
35 return ntohl(inet_addr (host));
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
39 error("rc_get_ipaddr: couldn't resolve hostname: %s", host);
98 * Purpose: Return a printable host name (or IP address in dot notation)
110 error("rc_ip_hostname: couldn't look up host by addr: %08lX", h_ipaddr);
119 * Purpose: get the IP address of this host in host orde
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965DomainAttributeHandler.java 78 // MAY NOT be an IP address of a host name
87 * Host A's name domain-matches host B's if
89 * <ul>their host name strings string-compare equal; or</ul>
95 * @param host host name where cookie is received from or being sent to.
97 * @return true if the specified host matches the given domain.
99 public boolean domainMatch(String host, String domain) {
100 boolean match = host.equals(domain)
101 || (domain.startsWith(".") && host.endsWith(domain))
117 String host = origin.getHost().toLowerCase(Locale.ENGLISH); local
181 String host = origin.getHost().toLowerCase(Locale.ENGLISH); local
    [all...]
  /external/chromium/googleurl/src/
url_canon_host.cc 99 // Scans a host name and fills in the output flags according to what we find.
103 void ScanHostname(const CHAR* spec, const url_parse::Component& host,
105 int end = host.end();
108 for (int i = host.begin; i < end; i++) {
116 // Canonicalizes a host name that is entirely 8-bit characters (even though
127 // canonicalized host since we know nothing weird can happen (escaped
136 // The return value indicates if the output is a potentially valid host name.
138 bool DoSimpleHost(const INCHAR* host,
146 unsigned int source = host[i];
150 if (!DecodeEscaped(host, &i, host_len
    [all...]
  /external/chromium/chrome/browser/sidebar/
sidebar_manager.cc 106 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
107 if (!host) {
108 host = new SidebarContainer(tab, content_id, this);
109 RegisterSidebarContainerFor(tab, host);
112 host->LoadDefaults();
115 host->Show();
132 SidebarContainer* host = GetSidebarContainerFor(tab, content_id);
133 DCHECK(host);
134 if (!host)
138 host->Expand()
169 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
183 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
193 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
202 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
211 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
285 SidebarContainer* host = GetSidebarContainerFor(tab, content_id); local
    [all...]
  /external/dbus/dbus/
dbus-server-win.c 62 const char *host; local
67 host = dbus_address_entry_get_value (entry, "host");
72 *server_p = _dbus_server_new_for_tcp_socket (host, bind, port,
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
Android.mk 3 ### GLES_CM host implementation (On top of OpenGL) ########################
4 $(call emugl-begin-host-shared-library,libGLES_CM_translator)
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
Android.mk 3 ### GLES_CM host implementation (On top of OpenGL) ########################
4 $(call emugl-begin-host-shared-library,libGLES_V2_translator)
  /development/tools/emulator/opengl/host/renderer/
Android.mk 3 # host renderer process ###########################
4 $(call emugl-begin-host-executable,emulator_renderer)
  /external/apache-http/src/org/apache/http/conn/ssl/
AllowAllHostnameVerifier.java 43 final String host,
  /external/chromium/chrome/browser/ui/views/
database_open_info_view.h 22 void SetFields(const std::string& host,

Completed in 2633 milliseconds

1 23 4 5 6 7 8 91011>>