Searched refs:httpHeaderField (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/WebCore/platform/network/
H A DResourceRequestBase.h94 String httpHeaderField(const AtomicString& name) const;
95 String httpHeaderField(const char* name) const;
101 String httpContentType() const { return httpHeaderField("Content-Type"); }
104 String httpReferrer() const { return httpHeaderField("Referer"); }
108 String httpOrigin() const { return httpHeaderField("Origin"); }
112 String httpUserAgent() const { return httpHeaderField("User-Agent"); }
115 String httpAccept() const { return httpHeaderField("Accept"); }
H A DResourceResponseBase.h73 String httpHeaderField(const AtomicString& name) const;
74 String httpHeaderField(const char* name) const;
H A DResourceRequestBase.cpp204 String ResourceRequestBase::httpHeaderField(const AtomicString& name) const function in class:WebCore::ResourceRequestBase
211 String ResourceRequestBase::httpHeaderField(const char* name) const function in class:WebCore::ResourceRequestBase
H A DResourceResponseBase.cpp235 String ResourceResponseBase::httpHeaderField(const AtomicString& name) const function in class:WebCore::ResourceResponseBase
242 String ResourceResponseBase::httpHeaderField(const char* name) const function in class:WebCore::ResourceResponseBase
/external/webkit/WebCore/loader/
H A DCrossOriginAccessControl.cpp99 const String& accessControlOriginString = response.httpHeaderField("Access-Control-Allow-Origin");
111 const String& accessControlCredentialsString = response.httpHeaderField("Access-Control-Allow-Credentials");
H A DCrossOriginPreflightResultCache.cpp93 if (!parseAccessControlAllowList(response.httpHeaderField("Access-Control-Allow-Methods"), m_methods))
97 if (!parseAccessControlAllowList(response.httpHeaderField("Access-Control-Allow-Headers"), m_headers))
101 if (parseAccessControlMaxAge(response.httpHeaderField("Access-Control-Max-Age"), expiryDelta)) {
H A DCachedCSSStyleSheet.cpp140 String mimeType = extractMIMETypeFromMediaType(response().httpHeaderField("Content-Type"));
H A DCachedResource.cpp397 return !m_response.httpHeaderField(lastModifiedHeader).isEmpty() || !m_response.httpHeaderField(eTagHeader).isEmpty();
H A Dloader.cpp342 const String& lastModified = resourceToRevalidate->response().httpHeaderField("Last-Modified");
343 const String& eTag = resourceToRevalidate->response().httpHeaderField("ETag");
/external/webkit/WebKit/chromium/src/
H A DWebURLRequest.cpp148 WebString WebURLRequest::httpHeaderField(const WebString& name) const function in class:WebKit::WebURLRequest
150 return m_private->m_resourceRequest->httpHeaderField(name);
H A DWebDocument.cpp132 loader->response().httpHeaderField(kChromeApplicationHeader);
H A DWebURLResponse.cpp156 WebString WebURLResponse::httpHeaderField(const WebString& name) const function in class:WebKit::WebURLResponse
158 return m_private->m_resourceResponse->httpHeaderField(name);
H A DFrameLoaderClientImpl.cpp803 response.httpHeaderField("Content-Disposition");
/external/webkit/WebKit/chromium/public/
H A DWebURLResponse.h93 WEBKIT_API WebString httpHeaderField(const WebString& name) const;
H A DWebURLRequest.h116 WEBKIT_API WebString httpHeaderField(const WebString& name) const;
/external/webkit/WebCore/platform/graphics/gtk/
H A DWebKitWebSourceGStreamer.cpp631 priv->seekable = length > 0 && g_ascii_strcasecmp("none", response.httpHeaderField("Accept-Ranges").utf8().data());
634 String value = response.httpHeaderField("icy-metaint");
648 value = response.httpHeaderField("icy-name");
655 value = response.httpHeaderField("icy-genre");
662 value = response.httpHeaderField("icy-url");
669 value = response.httpHeaderField("icy-title");
/external/webkit/WebCore/page/
H A DEventSource.cpp170 if (statusCode == 200 && response.httpHeaderField("Content-Type") == "text/event-stream") {
H A DXSSAuditor.cpp306 String xssProtectionValue = frame->loader()->documentLoader()->response().httpHeaderField(XSSProtectionHeader).stripWhiteSpace();
/external/webkit/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp256 d->m_response.setMimeType(extractMIMETypeFromMediaType(d->m_response.httpHeaderField("Content-Type")));
257 d->m_response.setTextEncodingName(extractCharsetFromMediaType(d->m_response.httpHeaderField("Content-Type")));
258 d->m_response.setSuggestedFilename(filenameFromHTTPContentDisposition(d->m_response.httpHeaderField("Content-Disposition")));
262 String location = d->m_response.httpHeaderField("location");
/external/webkit/WebCore/xml/
H A DXMLHttpRequest.cpp752 return m_response.httpHeaderField(name);
760 mimeType = extractMIMETypeFromMediaType(m_response.httpHeaderField("Content-Type"));
/external/webkit/WebKit/win/
H A DWebMutableURLRequest.cpp236 *result = BString(m_request.httpHeaderField(String(field, SysStringLen(field)))).release();
/external/webkit/WebCore/plugins/
H A DPluginStream.cpp165 String contentEncoding = m_resourceResponse.httpHeaderField("Content-Encoding");
/external/webkit/WebCore/loader/appcache/
H A DApplicationCacheGroup.cpp436 const String& lastModified = newestCachedResource->response().httpHeaderField("Last-Modified");
437 const String& eTag = newestCachedResource->response().httpHeaderField("ETag");
/external/webkit/WebCore/platform/network/soup/
H A DResourceHandleSoup.cpp180 response->setSuggestedFilename(filenameFromHTTPContentDisposition(response->httpHeaderField("Content-Disposition")));
/external/webkit/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp470 const String& content_disposition = response.httpHeaderField("Content-Disposition");

Completed in 246 milliseconds

12