Searched refs:headerValue (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/network/soup/
H A DResourceResponseSoup.cpp82 const char* headerValue; local
89 while (soup_message_headers_iter_next(&headersIter, &headerName, &headerValue))
90 addHTTPHeaderField(String::fromUTF8WithLatin1Fallback(headerName, strlen(headerName)), String::fromUTF8WithLatin1Fallback(headerValue, strlen(headerValue)));
H A DResourceRequestSoup.cpp66 const char* headerValue; local
67 while (soup_message_headers_iter_next(&headersIter, &headerName, &headerValue))
68 m_httpHeaderFields.set(String::fromUTF8(headerName), String::fromUTF8(headerValue));
/macosx-10.10/WebCore-7600.1.25/Modules/websockets/
H A DWebSocketExtensionDispatcher.cpp100 bool WebSocketExtensionDispatcher::processHeaderValue(const String& headerValue) argument
102 if (!headerValue.length())
111 const CString headerValueData = headerValue.utf8();
/macosx-10.10/WebCore-7600.1.25/loader/
H A DCrossOriginAccessControl.h53 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet&);
H A DCrossOriginAccessControl.cpp168 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet& headerSet) argument
171 headerValue.split(',', false, headers);
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DResourceResponseMac.mm133 if (NSString* headerValue = [headers objectForKey:commonHeaderFields[i]])
134 m_httpHeaderFields.set(String(commonHeaderFields[i]), headerValue);
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DWebVTTParser.cpp285 String headerValue = line.substring(colonPosition + 1, line.length() - 1); local
287 createNewRegion(headerValue);
446 void WebVTTParser::createNewRegion(const String& headerValue) argument
448 if (headerValue.isEmpty())
453 region->setRegionSettings(headerValue);
H A DWebVTTParser.h183 void createNewRegion(const String& headerValue);
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceResponseBase.cpp448 String headerValue = headers.get(headerName); local
449 if (headerValue.isEmpty())
455 double dateInMilliseconds = parseDate(headerValue);
477 String headerValue = m_httpHeaderFields.get(HTTPHeaderName::Age); local
479 m_age = headerValue.toDouble(&ok);
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DXSSAuditor.cpp277 String headerValue = documentLoader->response().httpHeaderField(XSSProtectionHeader); local
284 ContentSecurityPolicy::ReflectedXSSDisposition xssProtectionHeader = parseXSSProtectionHeader(headerValue, errorDetails, errorPosition, reportURL);
295 document->addConsoleMessage(MessageSource::Security, MessageLevel::Error, "Error parsing header X-XSS-Protection: " + headerValue + ": " + errorDetails + " at character position " + String::format("%u", errorPosition) + ". The default protections will be applied.");
/macosx-10.10/WebCore-7600.1.25/loader/appcache/
H A DApplicationCacheStorage.cpp1092 String headerValue = String(header + pos + 1, headerLength - pos - 1); local
1094 response.setHTTPHeaderField(headerName, headerValue);

Completed in 211 milliseconds