Searched defs:host (Results 51 - 75 of 1032) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/host/
H A Dmessage_filter_host.cc5 #include "ppapi/host/message_filter_host.h"
7 #include "ppapi/host/ppapi_host.h"
8 #include "ppapi/host/resource_message_filter.h"
11 namespace host { namespace in namespace:ppapi
14 PpapiHost* host,
18 : ResourceHost(host, instance, resource) {
25 } // namespace host
13 MessageFilterHost( PpapiHost* host, PP_Instance instance, PP_Resource resource, const scoped_refptr<ResourceMessageFilter>& message_filter) argument
H A Dresource_message_handler.cc5 #include "ppapi/host/resource_message_handler.h"
10 #include "ppapi/host/host_message_context.h"
13 namespace host { namespace in namespace:ppapi
33 // "completion pending" the resource host may have already sent the reply.
64 } // namespace host
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURLUtilsReadOnly.cpp50 String DOMURLUtilsReadOnly::host(const KURL& kurl) function in class:blink::DOMURLUtilsReadOnly
53 return kurl.host();
55 return kurl.host();
56 return kurl.host() + ":" + String::number(kurl.port());
H A DTemplateContentDocumentFragment.h36 static PassRefPtrWillBeRawPtr<TemplateContentDocumentFragment> create(Document& document, Element* host) argument
38 return adoptRefWillBeNoop(new TemplateContentDocumentFragment(document, host));
41 Element* host() const { return m_host; } function in class:blink::FINAL
53 TemplateContentDocumentFragment(Document& document, Element* host) argument
55 , m_host(host)
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DDatabaseIdentifier.cpp64 // underscores in them, so we'll assume that any additional underscores are part of the host.
80 String host = databaseIdentifier.substring(separator1 + 1, separator2 - separator1 - 1); local
83 KURL url(KURL(), protocol + "://" + host + ":" + String::number(port) + "/");
84 if (!url.isValid() || url.protocol() != protocol || url.host() != host)
102 return securityOrigin->protocol() + separatorString + securityOrigin->host() + separatorString + String::number(securityOrigin->port());
H A DOriginAccessEntry.cpp40 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting, IPAddressSetting ipAddressSetting) argument
42 , m_host(host.lower())
49 // Assume that any host that ends with a digit is trying to be an IP address.
62 ASSERT(origin.host() == origin.host().lower());
68 // Special case: Include subdomains and empty host means "all hosts, including ip addresses".
73 if (m_host == origin.host())
85 if (origin.host().length() <= m_host.length() || origin.host()[origin.host()
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dvpm_int.h63 unsigned char *host; /* If not NULL hostname to match */ member in struct:X509_VERIFY_PARAM_ID_st
/external/chromium_org/ui/aura/
H A Denv_observer.h21 virtual void OnHostInitialized(WindowTreeHost* host) {}; argument
24 virtual void OnHostActivated(WindowTreeHost* host) {} argument
/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_test_base.h29 // The number of times a host created by CreateHost() has been destroyed.
34 // |contents_view|, and is attached to |host| which is added as a child to
36 // newly created child Widget, and attaches it to |host|.
40 NativeViewHost* host);
45 NativeViewHost* host() { return host_.get(); } function in class:views::test::NativeViewHostTestBase
/external/chromium_org/ui/views/layout/
H A Dfill_layout.cc15 void FillLayout::Layout(View* host) { argument
16 if (!host->has_children())
19 View* frame_view = host->child_at(0);
20 frame_view->SetBoundsRect(host->GetContentsBounds());
23 gfx::Size FillLayout::GetPreferredSize(const View* host) const {
24 if (!host->has_children())
26 DCHECK_EQ(1, host->child_count());
27 gfx::Rect rect(host->child_at(0)->GetPreferredSize());
28 rect.Inset(-host->GetInsets());
32 int FillLayout::GetPreferredHeightForWidth(const View* host, in argument
[all...]
/external/clang/
H A Dclang-host-build.mk31 define transform-host-clang-td-to-out
37 -I $(LLVM_ROOT_PATH)/host/include \
/external/conscrypt/src/main/java/org/conscrypt/
H A DSSLClientSessionCache.java35 * Gets data from a pre-existing session for a given server host and port.
37 * @param host from {@link javax.net.ssl.SSLSession#getPeerHost()}
40 * @throws NullPointerException if host is null
42 public byte[] getSessionData(String host, int port); argument
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DKeepAliveHttpsTransportSE.java27 private final String host; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) { argument
34 super(host, port, file, timeout);
35 this.host = host;
51 serviceConnection = new HttpsServiceConnectionSEIgnoringConnectionClose(host, port,
/external/lldb/test/pexpect-2.4/examples/
H A Dssh_tunnel.py3 """This starts an SSH tunnel to a given host. If the SSH process ever dies then
21 tunnel_command = 'ssh -C -N -f -L 25:127.0.0.1:25 -L 143:127.0.0.1:143 -L 110:127.0.0.1:110 %(user)@%(host)'
22 host = raw_input('Hostname: ') variable
68 #tunnel_command = 'ssh -C -n -L 25:%(host)s:25 -L 110:%(host)s:110 %(user)s@%(host)s -f nothing.sh'
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DTunnelRequest.java32 final String host; field in class:TunnelRequest
38 * @param host the origin server's hostname. Not null.
44 public TunnelRequest(String host, int port, String userAgent, String proxyAuthorization) { argument
45 if (host == null) throw new NullPointerException("host == null");
47 this.host = host;
54 return "CONNECT " + host + ":" + port + " HTTP/1.1";
64 .url(new URL("https", host, port, "/"));
67 result.header("Host", port == getDefaultPort("https") ? host
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowIntentFilterAuthorityEntry.java9 private String host; field in class:ShadowIntentFilterAuthorityEntry
12 public void __constructor__(String host, String port) { argument
13 this.host = host;
23 return host;
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
H A DSocketFactoryTest.java86 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { argument
91 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) argument
97 public Socket createSocket(InetAddress host, int port) throws IOException { argument
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSocketFactory.java76 * Connects a socket to the given host.
82 * @param host the host to connect to
83 * @param port the port to connect to on the host
95 * @throws UnknownHostException if the IP address of the target host
102 String host,
120 * socket to a host in the same intranet ("trusted zone")
100 connectSocket( Socket sock, String host, int port, InetAddress localAddress, int localPort, HttpParams params ) argument
/external/apache-http/src/org/apache/http/conn/ssl/
H A DAllowAllHostnameVerifier.java48 final String host,
47 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DBrowserCompatHostnameVerifier.java56 final String host,
59 verify(host, cns, subjectAlts, false);
55 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DStrictHostnameVerifier.java63 final String host,
66 verify(host, cns, subjectAlts, true);
62 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DX509HostnameVerifier.java67 boolean verify(String host, SSLSession session); argument
69 void verify(String host, SSLSocket ssl) throws IOException; argument
71 void verify(String host, X509Certificate cert) throws SSLException; argument
84 * @param host The hostname to verify.
87 void verify(String host, String[] cns, String[] subjectAlts) argument
/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java50 private final String host; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) { argument
57 if (host == null) {
61 if (host.trim().length() == 0) {
72 this.host = host.toLowerCase(Locale.ENGLISH);
83 return this.host;
105 buffer.append(this.host);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965DomainAttributeHandler.java83 // MAY NOT be an IP address of a host name
92 * Host A's name domain-matches host B's if
94 * <ul>their host name strings string-compare equal; or</ul>
100 * @param host host name where cookie is received from or being sent to.
102 * @return true if the specified host matches the given domain.
104 public boolean domainMatch(String host, String domain) { argument
105 boolean match = host.equals(domain)
106 || (domain.startsWith(".") && host.endsWith(domain));
122 String host
[all...]
/external/chromium_org/ash/wm/
H A Dboot_splash_screen_chromeos.cc18 // ui::LayerDelegate that copies the aura host window's content to a ui::Layer.
22 explicit CopyHostContentLayerDelegate(aura::WindowTreeHost* host) argument
23 : host_(host) {
61 BootSplashScreen::BootSplashScreen(aura::WindowTreeHost* host) argument
62 : layer_delegate_(new CopyHostContentLayerDelegate(host)),
66 ui::Layer* root_layer = host->window()->layer();
67 layer_->SetBounds(gfx::Rect(host->window()->bounds().size()));

Completed in 1751 milliseconds

1234567891011>>