Searched refs:headerFields (Results 1 - 25 of 29) sorted by relevance

12

/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHTTPURLResponse.idl40 HRESULT allHeaderFields([out, retval] IPropertyBag** headerFields);
H A DIWebMutableURLRequest.idl49 - (void)setAllHTTPHeaderFields:(NSDictionary *)headerFields
51 HRESULT setAllHTTPHeaderFields([in] IPropertyBag* headerFields);
/external/webkit/Tools/DumpRenderTree/mac/
H A DWebArchiveDumpSupportMac.mm67 NSDictionary *headerFields = [httpResponse allHeaderFields];
68 for (NSString *headerField in [headerFields keyEnumerator])
69 CFHTTPMessageSetHeaderFieldValue(httpMessage.get(), (CFStringRef)headerField, (CFStringRef)[headerFields objectForKey:headerField]);
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshakeRequest.h50 const HTTPHeaderMap& headerFields() const;
H A DWebSocketHandshakeResponse.h51 const HTTPHeaderMap& headerFields() const;
H A DWebSocketHandshakeRequest.cpp78 const HTTPHeaderMap& WebSocketHandshakeRequest::headerFields() const function in class:WebCore::WebSocketHandshakeRequest
H A DWebSocketHandshakeResponse.cpp83 const HTTPHeaderMap& WebSocketHandshakeResponse::headerFields() const function in class:WebCore::WebSocketHandshakeResponse
H A DWebSocketHandshake.cpp372 return m_response.headerFields().get("sec-websocket-origin");
377 return m_response.headerFields().get("sec-websocket-location");
382 return m_response.headerFields().get("sec-websocket-protocol");
387 return m_response.headerFields().get("set-cookie");
392 return m_response.headerFields().get("set-cookie2");
397 return m_response.headerFields().get("upgrade");
402 return m_response.headerFields().get("connection");
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSDataExtras.m311 NSMutableDictionary *headerFields = [NSMutableDictionary dictionary];
342 NSString *currentValue = [headerFields objectForKey:lastKey];
347 [headerFields setObject:(NSString *)mergedValue forKey:lastKey];
381 NSString *oldValue = [headerFields objectForKey:lastKey];
387 [headerFields setObject:(NSString *)value forKey:lastKey];
392 return headerFields;
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp151 HTTPHeaderMap headerFields; local
177 String currentValue = headerFields.get(lastHeaderKey);
180 headerFields.set(lastHeaderKey, currentValue + newValue);
204 String oldValue = headerFields.get(lastHeaderKey);
212 headerFields.set(lastHeaderKey, value);
216 return headerFields;
219 static NPError parsePostBuffer(bool isFile, const char *buffer, uint32_t length, bool parseHeaders, HTTPHeaderMap& headerFields, Vector<uint8_t>& bodyData) argument
247 headerFields = parseRFC822HeaderFields(postBuffer, location);
253 String contentLength = headerFields.get("Content-Length");
257 headerFields
296 HTTPHeaderMap headerFields; local
398 HTTPHeaderMap headerFields; local
[all...]
H A DNetscapePlugin.h77 void loadURL(const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields,
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginController.h58 const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) = 0;
H A DPluginProxy.h107 void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
H A DPluginView.h123 const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
H A DPluginProxy.cpp370 void PluginProxy::loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) argument
372 m_pluginController->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups);
/external/webkit/Source/WebKit/win/
H A DWebMutableURLRequest.h124 /* [in] */ IPropertyBag *headerFields);
167 void addHTTPHeaderFields(const WebCore::HTTPHeaderMap& headerFields);
H A DWebURLResponse.h71 /* [retval][out] */ IPropertyBag **headerFields);
H A DWebMutableURLRequest.cpp275 /* [in] */ IPropertyBag* /*headerFields*/)
399 void WebMutableURLRequest::addHTTPHeaderFields(const HTTPHeaderMap& headerFields) argument
401 m_request.addHTTPHeaderFields(headerFields);
H A DWebURLResponse.cpp360 /* [retval][out] */ IPropertyBag** headerFields)
364 *headerFields = COMPropertyBag<String, AtomicString, CaseFoldingHash>::createInstance(m_response.httpHeaderFields());
359 allHeaderFields( IPropertyBag** headerFields) argument
/external/webkit/Source/WebCore/platform/network/
H A DResourceRequestBase.cpp354 void ResourceRequestBase::addHTTPHeaderFields(const HTTPHeaderMap& headerFields) argument
356 HTTPHeaderMap::const_iterator end = headerFields.end();
357 for (HTTPHeaderMap::const_iterator it = headerFields.begin(); it != end; ++it)
H A DResourceRequestBase.h102 void addHTTPHeaderFields(const HTTPHeaderMap& headerFields);
/external/webkit/Source/WebCore/plugins/
H A DPluginView.cpp1171 HTTPHeaderMap headerFields; local
1194 String currentValue = headerFields.get(lastKey);
1197 headerFields.set(lastKey, currentValue + newValue);
1221 String oldValue = headerFields.get(lastKey);
1229 headerFields.set(lastKey, value);
1234 return headerFields;
1244 HTTPHeaderMap headerFields; local
1267 headerFields = parseRFC822HeaderFields(buffer, location);
1273 String contentLength = headerFields.get("Content-Length");
1277 headerFields
[all...]
/external/webkit/Source/WebKit2/PluginProcess/
H A DPluginControllerProxy.h84 virtual void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
H A DPluginControllerProxy.cpp202 void PluginControllerProxy::loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) argument
204 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
/external/okhttp/src/main/java/libcore/net/http/
H A DRawHeaders.java210 public void addAll(String fieldName, List<String> headerFields) { argument
211 for (String value : headerFields) {

Completed in 310 milliseconds

12