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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebProtectionSpace.cpp 38 const String& WebProtectionSpace::host() const function in class:WebKit::WebProtectionSpace
40 return m_coreProtectionSpace.host();
  /external/webkit/Source/WebKit2/WebProcess/ResourceCache/
WebResourceCacheManager.cpp 77 CFStringRef host = static_cast<CFStringRef>(CFArrayGetValueAtIndex(cfURLHosts.get(), i)); local
78 origins.add(SecurityOrigin::create(httpString, host, 0));
92 originData.host = origin->host();
111 RefPtr<SecurityOrigin> origin = SecurityOrigin::create(originData.protocol, originData.host, originData.port);
120 RetainPtr<CFStringRef> host(AdoptCF, origin->host().createCFString());
121 CFArrayAppendValue(hostArray.get(), host.get());
  /external/chromium/chrome/browser/extensions/
app_process_apitest.cc 77 // The app under test acts on URLs whose host is "localhost",
78 // so the URLs we navigate to must have host "localhost".
95 RenderViewHost* host = browser()->GetTabContentsAt(1)->render_view_host(); local
97 EXPECT_EQ(host->process(),
99 EXPECT_NE(host->process(),
104 WindowOpenHelper(browser(), host, local
106 WindowOpenHelper(browser(), host, local
112 WindowOpenHelper(browser(), host, local
124 EXPECT_EQ(host->process(),
126 EXPECT_EQ(host->process()
181 RenderViewHost* host = browser()->GetTabContentsAt(1)->render_view_host(); local
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_policy.cc 32 static bool IsIntranetHost(const std::string& host) {
33 const size_t dot = host.find(kDot);
34 return dot == std::string::npos || dot == host.length() - 1;
48 handler->request_url().host());
97 backend_->HostRanInsecureContent(GURL(security_origin).host(),
107 backend_->HostRanInsecureContent(info->url().host(), info->child_id());
129 if (IsIntranetHost(entry->url().host())) {
149 backend_->DidHostRunInsecureContent(entry->url().host(),
176 handler->request_url().host());
192 handler->request_url().host());
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
extension_popup.cc 46 ExtensionPopup::ExtensionPopup(ExtensionHost* host,
52 : BrowserBubble(host->view(),
57 extension_host_(host),
64 host->view()->SetContainer(this);
66 // We wait to show the popup until the contained host finishes loading.
69 Source<Profile>(host->profile()));
73 Source<Profile>(host->profile()));
102 host()->render_view_host()->view()->Focus();
145 // If we aren't the host of the popup, then disregard the notification.
146 if (Details<ExtensionHost>(host()) != details
    [all...]
  /frameworks/base/core/java/android/webkit/
SslErrorHandlerImpl.java 151 * from the client for this host and for an error of equal or greater
157 final String host = loader.host(); local
161 assert host != null;
165 if (mSslPrefTable.containsKey(host) && primary <= mSslPrefTable.getInt(host)) {
259 String host = loader.host(); local
262 assert host != null;
265 boolean hasKey = mSslPrefTable.containsKey(host);
    [all...]
  /bionic/libc/netbsd/net/
getnameinfo.c 115 int getnameinfo(const struct sockaddr* sa, socklen_t salen, char* host, size_t hostlen, char* serv, size_t servlen, int flags)
120 return getnameinfo_inet(sa, salen, host, hostlen,
124 return getnameinfo_link(sa, salen, host, hostlen,
133 /* On success length of the host name is returned. A return
134 * value of 0 means there's no host name associated with
229 getnameinfo_inet(sa, salen, host, hostlen, serv, servlen, flags)
232 char *host;
249 /* host may be NULL */
339 if (host == NULL || hostlen == 0) {
343 * "||" here: rfc2553bis-03 says that host == NULL o
    [all...]
  /bionic/libc/private/
resolv_static.h 27 struct hostent host; member in struct:res_static
  /build/core/
host_executable.mk 19 $(transform-host-o-to-executable)
host_static_library.mk 2 ## Standard rules for building a static library for the host.
24 $(transform-host-o-to-static-lib)
  /development/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
AccessibilityDelegateSupportActivity.java 75 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
76 super.onPopulateAccessibilityEvent(host, event);
85 public void onInitializeAccessibilityNodeInfo(View host,
87 super.onInitializeAccessibilityNodeInfo(host, info);
  /external/apache-http/src/org/apache/http/client/params/
ClientParamBean.java 80 public void setVirtualHost (final HttpHost host) {
81 params.setParameter(ClientPNames.VIRTUAL_HOST, host);
88 public void setDefaultHost (final HttpHost host) {
89 params.setParameter(ClientPNames.DEFAULT_HOST, host);
  /external/apache-http/src/org/apache/http/conn/scheme/
LayeredSocketFactory.java 49 * Returns a socket connected to the given host that is layered over an
54 * @param host the host name/IP
55 * @param port the port on the host
62 * @throws UnknownHostException if the IP address of the host cannot be
67 String host,
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDomainHandler.java 51 String host = origin.getHost(); local
53 if (host.contains(".")) {
98 String host = origin.getHost(); local
103 return host.endsWith(domain);
  /external/chromium/chrome/browser/
chrome_content_browser_client.h 19 virtual void BrowserRenderProcessHostCreated(BrowserRenderProcessHost* host);
spellcheck_host.cc 20 scoped_refptr<SpellCheckHostImpl> host = local
24 if (!host)
27 host->Initialize();
28 return host;
  /external/chromium/chrome/browser/chromeos/status/
window_switcher_button.h 26 explicit WindowSwitcherButton(StatusAreaHost* host);
  /external/chromium/net/base/
transport_security_state.h 62 base::Time created; // when this host entry was first created
72 // Enable TransportSecurity for |host|.
73 void EnableHost(const std::string& host, const DomainState& state);
75 // Delete any entry for |host|. If |host| doesn't have an exact entry then no
77 bool DeleteHost(const std::string& host);
79 // Returns true if |host| has TransportSecurity enabled, in the context of
82 const std::string& host,
126 static std::string CanonicalizeHost(const std::string& host);
  /external/chromium/net/proxy/
proxy_config_service_android.h 27 void UpdateProxySettings(std::string& host, std::string& exclusionList);
  /external/dbus/dbus/
dbus-transport-socket.h 33 DBusTransport* _dbus_transport_new_for_tcp_socket (const char *host,
  /external/hyphenation/
Android.mk 4 # and the host (as a static library for tools to use).
27 # For the host
  /external/liblzf/
Android.mk 9 # Static library for host
28 # JAR for host
  /external/llvm/lib/AsmParser/
Android.mk 8 # For the host
18 include $(LOCAL_PATH)/../../llvm-host-build.mk
  /external/llvm/utils/
plotNLT.pl 9 $host="localhost";
12 $connectionInfo="dbi:mysql:$db;$host";
  /external/qemu/distrib/sdl-1.2.12/
Makefile 22 CONFIG_H := $(OBJS_DIR)/config-host.h

Completed in 1249 milliseconds

1 2 3 4 56 7 8 91011>>