Searched refs:host (Results 401 - 425 of 2743) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/platform/
H A DRefCountedSupplement.h57 static void provideTo(Supplementable<T>& host, const char* key, PassRefPtr<ThisType> supplement) argument
59 host.provideSupplement(key, adoptPtr(new Wrapper(supplement)));
62 static ThisType* from(Supplementable<T>& host, const char* key) argument
64 Supplement<T>* found = static_cast<Supplement<T>*>(host.requireSupplement(key));
H A DURLPatternMatcher.cpp85 // No other '*' can occur in the host.
113 const String& host = test.host(); local
114 if (equalIgnoringCase(host, m_host))
120 // If we're matching subdomains, and we have no host, that means the pattern
125 // Check if the domain is a subdomain of our host.
126 if (!host.endsWith(m_host, false))
129 ASSERT(host.length() > m_host.length());
132 return host[host
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DOriginAccessEntry.h59 // If host is empty string and SubdomainSetting is AllowSubdomains, the entry will match all domains in the specified protocol.
60 OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting, IPAddressSetting);
64 const String& host() const { return m_host; } function in class:blink::OriginAccessEntry
80 && equalIgnoringCase(a.host(), b.host())
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dprint-test-ordering35 from webkitpy.common.host import Host
45 host = Host()
46 stats_path = host.filesystem.join(host.port_factory.get().results_directory(), 'stats.json')
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dprofiler.py38 def create_profiler(cls, host, executable_path, output_dir, profiler_name=None, identifier=None):
39 profilers = cls.profilers_for_platform(host.platform)
42 profiler_name = profiler_name or cls.default_profiler_name(host.platform)
46 return profilers[0](host, executable_path, output_dir, identifier)
69 def __init__(self, host, executable_path, output_dir, identifier=None):
70 self._host = host
87 def __init__(self, host, executable_path, output_dir, output_suffix, identifier=None):
88 super(SingleFileOutputProfiler, self).__init__(host, executable_path, output_dir, identifier)
97 def __init__(self, host, executable_path, output_dir, identifier=None):
98 super(GooglePProf, self).__init__(host, executable_pat
[all...]
/external/chromium_org/third_party/polymer/components/paper-menu-button/
H A Dpaper-menu-button-transition.css8 :host(.paper-menu-button-transition) {
15 :host(.paper-menu-button-transition.paper-menu-button-opened) {
/external/chromium_org/third_party/polymer/components-chromium/paper-menu-button/
H A Dpaper-menu-button-transition.css8 :host(.paper-menu-button-transition) {
15 :host(.paper-menu-button-transition.paper-menu-button-opened) {
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A Dxmlrpctransport.py112 def make_connection(self, host):
115 if self._connection and host == self._connection[0]:
118 # create a HTTPS connection object from a host descriptor
119 chost, extra_headers, x509 = self.get_host_info(host)
127 # store the host argument along with the connection object
128 self._connection = host, http
/external/conscrypt/src/main/java/org/conscrypt/
H A DFileClientSessionCache.java44 * This cache creates one file per SSL session using "host.port" for
118 * Gets the file name for the given host and port.
120 private static String fileName(String host, int port) { argument
121 if (host == null) {
122 throw new NullPointerException("host == null");
124 return host + "." + port;
128 public synchronized byte[] getSessionData(String host, int port) { argument
135 String name = fileName(host, port);
160 logReadError(host, file, e);
169 logReadError(host, fil
183 logReadError(String host, File file, Throwable t) argument
304 logWriteError(String host, File file, Throwable t) argument
[all...]
/external/guava/guava/src/com/google/common/net/
H A DHostSpecifier.java28 * A syntactically valid host specifier, suitable for use in a URI.
32 * <p>Because this class is intended to represent host specifiers which can
39 * to a real or accessible host. Only syntactic and pattern-based checks are
80 final String host = parsedHost.getHostText();
88 addr = InetAddresses.forString(host);
100 final InternetDomainName domain = InternetDomainName.from(host);
107 "Domain name does not have a recognized public suffix: " + host);
128 new ParseException("Invalid host specifier: " + specifier, 0);
168 * Returns a string representation of the host specifier suitable for
169 * inclusion in a URI. If the host specifie
[all...]
/external/liblzf/
H A DAndroid.mk9 # Static library for host
28 # JAR for host
/external/llvm/lib/AsmParser/
H A DAndroid.mk8 # For the host
18 include $(LOCAL_PATH)/../../llvm-host-build.mk
/external/qemu/distrib/sdl-1.2.15/
H A DMakefile22 CONFIG_H := $(OBJS_DIR)/config-host.h
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConfiguration.java60 * @param host the hostname or IP address of the connection manager
69 public BOSHConfiguration(boolean https, String host, int port, String filePath, String xmppDomain) { argument
70 super(host, port, xmppDomain);
81 * @param host the hostname or IP address of the connection manager
91 public BOSHConfiguration(boolean https, String host, int port, String filePath, ProxyInfo proxy, String xmppDomain) { argument
92 super(host, port, xmppDomain, proxy);
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLGSSAPIMechanism.java57 * @param host the hostname where the user account resides.
61 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException { argument
65 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
76 * @param host the hostname where the user account resides.
80 public void authenticate(String username, String host, String password) throws IOException, XMPPException { argument
84 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLEngineTest.java40 * SSLEngine object with null host and -1 port
52 * Test for <code>SSLEngine(String host, int port)</code> constructor
66 * Test for <code>SSLEngine(String host, int port)</code> constructor
69 String host = "new host";
71 SSLEngine e = new mySSLEngine(host, port);
72 assertEquals(e.getPeerHost(), host);
92 String host = "new host";
96 SSLEngine e = new mySSLEngine(host, por
366 mySSLEngine(String host, int port) argument
513 mySSLEngine1(String host, int port) argument
[all...]
/external/chromium_org/content/browser/
H A Dhost_zoom_map_impl.cc107 double HostZoomMapImpl::GetZoomLevelForHost(const std::string& host) const {
109 HostZoomLevels::const_iterator i(host_zoom_levels_.find(host));
114 const std::string& host) const {
125 HostZoomLevels::const_iterator i(zoom_levels.find(host));
131 const std::string& host) const {
137 HostZoomLevels::const_iterator i(scheme_iterator->second.find(host));
142 return GetZoomLevelForHost(host);
154 i->first, // host
170 j->first, // host
181 void HostZoomMapImpl::SetZoomLevelForHost(const std::string& host, argument
195 SendZoomLevelChange(std::string(), host, level); local
205 SetZoomLevelForHostAndScheme(const std::string& scheme, const std::string& host, double level) argument
285 SetZoomLevelForView(int render_process_id, int render_view_id, double level, const std::string& host) argument
324 RenderViewHost* host = local
362 RenderViewHost* host = local
373 SendZoomLevelChange(const std::string& scheme, const std::string& host, double level) argument
[all...]
H A Dhost_zoom_map_impl.h37 const std::string& host) const OVERRIDE;
40 const std::string& host) const OVERRIDE;
43 const std::string& host,
47 const std::string& host,
69 // Otherwise, the level will be applied on a host level.
74 // this view, or for the host, depending on UsesTemporaryZoomLevel().
78 const std::string& host);
112 double GetZoomLevelForHost(const std::string& host) const;
115 // for the specified host and scheme.
118 const std::string& host,
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dmain.py31 from webkitpy.common.host import Host
126 host = Host()
127 host.initialize_scm()
143 paths = change_directory(host.filesystem, checkout_root=host.scm().checkout_root, paths=paths)
146 file_reader = TextFileReader(host.filesystem, style_processor)
152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Djingleinfotask.cc116 std::string host = server->Attr(QN_JINGLE_INFO_HOST); local
118 if (host != STR_EMPTY && host != STR_EMPTY) {
119 stun_hosts.push_back(rtc::SocketAddress(host, atoi(port.c_str())));
129 std::string host = server->Attr(QN_JINGLE_INFO_HOST); local
130 if (host != STR_EMPTY) {
131 relay_hosts.push_back(host);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_network.c115 struct hostent *host = NULL; local
118 host = gethostbyname(hostname);
119 if (!host)
122 memcpy((char *)&sa.sin_addr,host->h_addr_list[0],host->h_length);
123 sa.sin_family= host->h_addrtype;
126 s = socket(host->h_addrtype, SOCK_STREAM, IPPROTO_TCP);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c115 struct hostent *host = NULL; local
118 host = gethostbyname(hostname);
119 if (!host)
122 memcpy((char *)&sa.sin_addr,host->h_addr_list[0],host->h_length);
123 sa.sin_family= host->h_addrtype;
126 s = socket(host->h_addrtype, SOCK_STREAM, IPPROTO_TCP);
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_network_proxy_host.cc20 #include "ppapi/host/dispatch_host_message.h"
21 #include "ppapi/host/ppapi_host.h"
26 PepperNetworkProxyHost::PepperNetworkProxyHost(BrowserPpapiHostImpl* host, argument
29 : ResourceHost(host->GetPpapiHost(), instance, resource),
35 host->GetRenderFrameIDsForInstance(
43 host->external_plugin()),
107 ppapi::host::HostMessageContext* context) {
116 ppapi::host::HostMessageContext* context,
166 ppapi::host::ReplyMessageContext context,
178 host()
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_throttler_manager.cc81 std::string host = url.host(); local
82 if (opt_out_hosts_.find(host) != opt_out_hosts_.end() ||
83 IsLocalhost(host)) {
84 if (!logged_for_localhost_disabled_ && IsLocalhost(host)) {
87 NetLog::StringCallback("host", &host));
101 void URLRequestThrottlerManager::AddToOptOutList(const std::string& host) { argument
103 // simple. If a host starts adding the opt-out header to its responses
105 // host, th
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppp_instance_private_proxy_unittest.cc60 // The 1 ref we got from CreateObject will be passed to the host. We want to
143 host().RegisterTestInterface(PPB_VAR_DEPRECATED_INTERFACE,
154 HostDispatcher::SetForInstance(kInstance, host().host_dispatcher());
164 // Grab the host-side proxy for PPP_Instance and PPP_Instance_Private.
167 host().host_dispatcher()->GetProxiedInterface(
170 host().host_dispatcher()->GetProxiedInterface(
179 // Check the host-side var exists with the expected id and has 1 refcount (the
183 Var* host_var = host().var_tracker().GetVar(expected_host_id);
187 host().var_tracker().GetRefCountForObject(GetPPVarNoAddRef(host_var)));
195 host()
[all...]

Completed in 623 milliseconds

<<11121314151617181920>>