Home
last modified time | relevance | path

Searched refs:headerValue (Results 1 – 18 of 18) sorted by relevance

/external/okhttp/src/main/java/com/squareup/okhttp/
DOkAuthenticator.java89 private final String headerValue; field in OkAuthenticator.Credential
91 private Credential(String headerValue) { in Credential() argument
92 this.headerValue = headerValue; in Credential()
108 return headerValue; in getHeaderValue()
112 return o instanceof Credential && ((Credential) o).headerValue.equals(headerValue); in equals()
116 return headerValue.hashCode(); in hashCode()
120 return headerValue; in toString()
DResponse.java96 public String headerValue(int index) { in headerValue() method in Response
DRequest.java85 public String headerValue(int index) { in headerValue() method in Request
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocketExtensionDispatcher.cpp98 bool WebSocketExtensionDispatcher::processHeaderValue(const String& headerValue) in processHeaderValue() argument
100 if (!headerValue.length()) in processHeaderValue()
105 …nse must not include 'Sec-WebSocket-Extensions' header if not present in request: " + headerValue); in processHeaderValue()
109 const CString headerValueData = headerValue.utf8(); in processHeaderValue()
/external/webrtc/src/system_wrappers/source/
Daligned_malloc.cc96 uintptr_t headerValue = (uintptr_t)returnValue; in AlignedMalloc() local
97 memcpy(headerPtr,&headerValue,sizeof(uintptr_t)); in AlignedMalloc()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DCookieParser.js111 _initialize: function(headerValue) argument
113 this._input = headerValue;
114 if (typeof headerValue !== "string")
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
DVTTParser.cpp294 String headerValue = line.substring(colonPosition + 1); in collectMetadataHeader() local
296 createNewRegion(headerValue); in collectMetadataHeader()
449 void VTTParser::createNewRegion(const String& headerValue) in createNewRegion() argument
451 if (headerValue.isEmpty()) in createNewRegion()
456 region->setRegionSettings(headerValue); in createNewRegion()
DVTTParser.h134 void createNewRegion(const String& headerValue);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DCrossOriginAccessControl.cpp190 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet& headerSet) in parseAccessControlExposeHeadersAllowList() argument
193 headerValue.split(',', false, headers); in parseAccessControlExposeHeadersAllowList()
DCrossOriginAccessControl.h58 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet&);
/external/chromium_org/third_party/WebKit/Source/platform/network/
DResourceResponse.cpp419 const AtomicString& headerValue = headers.get(headerName); in parseDateValueInHeader() local
420 if (headerValue.isEmpty()) in parseDateValueInHeader()
426 double dateInMilliseconds = parseDate(headerValue); in parseDateValueInHeader()
446 const AtomicString& headerValue = m_httpHeaderFields.get(headerName); in age() local
448 m_age = headerValue.toDouble(&ok); in age()
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
DRecordedResponse.java52 actualHeaders.add(response.headerName(i) + ": " + response.headerValue(i)); in assertContainsHeaders()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DLexer.java81 String headerValue = null; in getHeaderValue()
84 headerValue = line.substring(begin + 1); in getHeaderValue()
88 return headerValue; in getHeaderValue()
DParserFactory.java287 String headerValue = Lexer.getHeaderValue(line); in createParser() local
288 if (headerName == null || headerValue == null) in createParser()
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DJob.java56 connection.addRequestProperty(request.headerName(i), request.headerValue(i)); in sendRequest()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DXSSAuditor.cpp274 … const AtomicString& headerValue = documentLoader->response().httpHeaderField(XSSProtectionHeader); in init() local
281 …ReflectedXSSDisposition xssProtectionHeader = parseXSSProtectionHeader(headerValue, errorDetails, … in init()
292 …Source, ErrorMessageLevel, "Error parsing header X-XSS-Protection: " + headerValue + ": " + error… in init()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DAssociatedURLLoaderTest.cpp213 void CheckHeaderFails(const char* headerField, const char* headerValue) in CheckHeaderFails() argument
218 … request.setHTTPHeaderField(WebString::fromUTF8(headerField), WebString::fromUTF8(headerValue)); in CheckHeaderFails()
/external/nist-sip/java/gov/nist/javax/sip/header/
DHeaderFactoryImpl.java1203 String headerValue) in createHeader() argument
1211 .append(headerValue) in createHeader()