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

12

/macosx-10.9.5/WebKit-7537.78.2/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);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/InspectorServer/
H A DWebInspectorServer.cpp128 HTTPHeaderMap headerFields; local
129 headerFields.set("Connection", "close");
130 headerFields.set("Content-Length", String::number(body.size()));
132 headerFields.set("Content-Type", contentType);
135 connection->sendHTTPResponseHeader(found ? 200 : 404, found ? "OK" : "Not Found", headerFields);
H A DWebSocketServerConnection.cpp99 void WebSocketServerConnection::sendHTTPResponseHeader(int statusCode, const String& statusText, const HTTPHeaderMap& headerFields) argument
107 HTTPHeaderMap::const_iterator end = headerFields.end();
108 for (HTTPHeaderMap::const_iterator it = headerFields.begin(); it != end; ++it) {
179 const HTTPHeaderMap& headers = request->headerFields();
208 const HTTPHeaderMap& requestHeaders = protectedRequest->headerFields();
H A DWebSocketServerConnection.h61 void sendHTTPResponseHeader(int statusCode, const String& statusText, const WebCore::HTTPHeaderMap& headerFields);
H A DHTTPRequest.h59 const WebCore::HTTPHeaderMap& headerFields() const { return m_headerFields; } function in class:WebKit::HTTPRequest
/macosx-10.9.5/WebKit-7537.78.2/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;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp149 HTTPHeaderMap headerFields; local
175 String currentValue = headerFields.get(lastHeaderKey);
178 headerFields.set(lastHeaderKey, currentValue + newValue);
202 String oldValue = headerFields.get(lastHeaderKey);
206 headerFields.set(lastHeaderKey, value);
210 return headerFields;
213 static NPError parsePostBuffer(bool isFile, const char *buffer, uint32_t length, bool parseHeaders, HTTPHeaderMap& headerFields, Vector<uint8_t>& bodyData) argument
241 headerFields = parseRFC822HeaderFields(postBuffer, location);
247 String contentLength = headerFields.get("Content-Length");
251 headerFields
290 HTTPHeaderMap headerFields; local
392 HTTPHeaderMap headerFields; local
[all...]
H A DNetscapePlugin.h97 void loadURL(const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields,
H A DNetscapePlugin.cpp170 void NetscapePlugin::loadURL(const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, argument
175 controller()->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups());
/macosx-10.9.5/WebKit-7537.78.2/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.cpp276 /* [in] */ IPropertyBag* /*headerFields*/)
400 void WebMutableURLRequest::addHTTPHeaderFields(const HTTPHeaderMap& headerFields) argument
402 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
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DResourceRequestBase.cpp411 void ResourceRequestBase::addHTTPHeaderFields(const HTTPHeaderMap& headerFields) argument
413 HTTPHeaderMap::const_iterator end = headerFields.end();
414 for (HTTPHeaderMap::const_iterator it = headerFields.begin(); it != end; ++it)
H A DResourceRequestBase.h90 void addHTTPHeaderFields(const HTTPHeaderMap& headerFields);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/
H A DPluginController.h67 const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) = 0;
H A DPluginProxy.h151 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.h180 const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
H A DPluginProxy.cpp557 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
559 controller()->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups);
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginView.cpp1069 HTTPHeaderMap headerFields; local
1092 String currentValue = headerFields.get(lastKey);
1095 headerFields.set(lastKey, currentValue + newValue);
1119 String oldValue = headerFields.get(lastKey);
1123 headerFields.set(lastKey, value);
1128 return headerFields;
1138 HTTPHeaderMap headerFields; local
1161 headerFields = parseRFC822HeaderFields(buffer, location);
1167 String contentLength = headerFields.get("Content-Length");
1171 headerFields
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DWebCoreURLResponse.mm338 return [[[NSHTTPURLResponse alloc] initWithURL:[[connection currentRequest] URL] statusCode:302 HTTPVersion:(NSString *)kCFHTTPVersion1_1 headerFields:synthesizedResponseHeaderFields] autorelease];
/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/
H A DPluginControllerProxy.cpp248 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
250 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
H A DPluginControllerProxy.h90 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);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.mm414 RetainPtr<NSMutableDictionary> headerFields = adoptNS([[NSMutableDictionary alloc] init]);
418 [headerFields.get() setObject:referrer forKey:@"Referer"];
422 [headerFields.get() setObject:userAgent forKey:@"User-Agent"];
424 if ([headerFields.get() count])
425 [options.get() setObject:headerFields.get() forKey:@"AVURLAssetHTTPHeaderFieldsKey"];

Completed in 172 milliseconds

12