Searched defs:host (Results 1 - 25 of 495) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.c308 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.c308 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.c308 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGShadowTreeElements.cpp56 inline SVGShadowTreeRootElement::SVGShadowTreeRootElement(Document* document, SVGUseElement* host) argument
59 setParent(host);
63 PassRefPtr<SVGShadowTreeRootElement> SVGShadowTreeRootElement::create(Document* document, SVGUseElement* host) argument
65 return adoptRef(new SVGShadowTreeRootElement(document, host));
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshake.cpp78 builder.append(url.host().lower());
192 const String WebSocketHandshake::host() const function in class:WebCore::WebSocketHandshake
194 return m_url.host().lower();
/external/webkit/Source/WebCore/wml/
H A DWMLPageState.cpp75 String host = passedHost; local
76 return host.replace("127.0.0.1", "localhost");
85 String host = normalizedHostName(url.host()); local
86 return host.isEmpty() ? "localhost" : host;
194 bool WMLPageState::hostIsAllowedToAccess(const String& host) const
204 if (host.contains('.'))
205 host.split('.', subdomainsCheck);
207 subdomainsCheck.append(host);
[all...]
/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp47 String WorkerLocation::host() const function in class:WebCore::WorkerLocation
49 return m_url.port() ? m_url.host() + ":" + String::number(m_url.port()) : m_url.host();
54 return m_url.host();
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp1060 String host = url.host(); local
1061 bool youtube = host.endsWith("youtube.com")
1062 || host.endsWith("youtube-nocookie.com");
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp440 const WTF::String host = url.host(); local
441 if (host.find("xn--") == notFound) // no punycode IDN found.
444 const WTF::CString cHost = host.utf8();
447 if (convertedHost.length() && convertedHost.length() != host.length()) {
790 WebFrame::didReceiveAuthenticationChallenge(WebUrlLoaderClient* client, const std::string& host, const std::string& realm, bool useCachedCredentials, bool suppressDialog) argument
797 jstring jHost = stdStringToJstring(env, host, true);
/external/webkit/Source/WebKit/chromium/src/
H A DApplicationCacheHostInternal.h48 ApplicationCacheHostInternal(ApplicationCacheHost* host) argument
49 : m_innerHost(host)
51 WebKit::WebFrameImpl* webFrame = WebKit::WebFrameImpl::fromFrame(host->m_documentLoader->frame());
H A DWebSecurityOrigin.cpp81 WebString WebSecurityOrigin::host() const function in class:WebKit::WebSecurityOrigin
84 return m_private->host();
/external/webkit/Source/WebKit/chromium/tests/
H A DKURLTest.cpp54 const char* host; member in struct:__anon14783::ComponentCase
70 const char* host; member in struct:__anon14783::GetterCase
91 EXPECT_EQ(cases[i].host, kurl.host());
105 EXPECT_EQ(cases[i].host, kurl.host());
121 // url protocol host port user pass path lastPath query ref
142 EXPECT_EQ(cases[i].host, kurl.host());
196 const char* host; member in struct:__anon14783::ExpectedComponentCase
[all...]
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp187 static bool isGoogleDomain(String host) argument
202 int position = host.find(".google.");
203 if (position > 0 && googleDomains.contains(host.substring(position + sizeof(".google."))))
208 if (host.endsWith(otherGoogleDomains.at(i)))
224 if (useQuirks && isGoogleDomain(url.host()))
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitsecurityorigin.cpp35 * by web sites. An origin consists of a host name, a protocol, and a port
68 g_free(priv->host);
156 * WebKitSecurityOrigin:host:
158 * The host of the security origin.
163 g_param_spec_string("host",
165 _("The host of the security origin"),
258 WTF::String host = priv->coreOrigin->host(); local
260 if (!priv->host)
261 priv->host
[all...]
H A Dwebkitsecurityoriginprivate.h41 gchar* host; member in struct:_WebKitSecurityOriginPrivate
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebsecurityorigin.cpp43 An origin consists of a host name, a scheme, and a port number. Web sites
64 web page, and use host(), scheme() and port() to identify the security origin.
102 Returns the host name defining the security origin.
104 QString QWebSecurityOrigin::host() const function in class:QWebSecurityOrigin
106 return d->origin->host();
/external/webkit/Source/WebKit/win/
H A DWebSecurityOrigin.cpp108 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::host( function in class:WebSecurityOrigin
114 *result = BString(m_securityOrigin->host()).release();
H A DWebURLProtectionSpace.cpp122 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::host( function in class:WebURLProtectionSpace
125 BString str = m_protectionSpace.host();
147 /* [in] */ BSTR host,
168 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
175 /* [in] */ BSTR host,
198 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
146 initWithHost( BSTR host, int port, BSTR protocol, BSTR realm, BSTR authenticationMethod) argument
174 initWithProxyHost( BSTR host, int port, BSTR proxyType, BSTR realm, BSTR authenticationMethod) argument
H A DWebUserContentURLPattern.cpp108 HRESULT WebUserContentURLPattern::host(BSTR* host) argument
110 if (!host)
112 *host = BString(m_pattern.host()).release();
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp1123 void wxWebView::SetProxyInfo(const wxString& host, argument
1131 mgr->setProxyInfo(host, port, curlProxyType(type), username, password);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKSecurityOrigin.cpp45 WKSecurityOriginRef WKSecurityOriginCreate(WKStringRef protocol, WKStringRef host, int port) argument
47 RefPtr<WebSecurityOrigin> securityOrigin = WebSecurityOrigin::create(toImpl(protocol)->string(), toImpl(host)->string(), port);
58 return toCopiedAPI(toImpl(securityOrigin)->host());
/external/webkit/Source/WebKit2/Shared/
H A DSecurityOriginData.h47 // host, and port.
50 String host; member in struct:WebKit::SecurityOriginData
H A DWebCoreArgumentCoders.h148 encoder->encode(CoreIPC::In(space.host(), space.port(), static_cast<uint32_t>(space.serverType()), space.realm(), static_cast<uint32_t>(space.authenticationScheme())));
153 String host; local
159 if (!decoder->decode(CoreIPC::Out(host, port, serverType, realm, authenticationScheme)))
162 space = WebCore::ProtectionSpace(host, port, static_cast<WebCore::ProtectionSpaceServerType>(serverType), realm, static_cast<WebCore::ProtectionSpaceAuthenticationScheme>(authenticationScheme));
H A DWebSecurityOrigin.h47 static PassRefPtr<WebSecurityOrigin> create(const String& protocol, const String& host, int port) argument
49 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(protocol, host, port);
56 const String host() const { return m_securityOrigin->host(); } function in class:WebKit::WebSecurityOrigin
H A DWebURL.h54 String host() const function in class:WebKit::WebURL
57 return m_parsedURL->isValid() ? m_parsedURL->host() : String();

Completed in 329 milliseconds

1234567891011>>