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

/macosx-10.10/WebKit-7600.1.25/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.10/WebKit2-7600.1.25/UIProcess/InspectorServer/
H A DWebInspectorServer.cpp127 HTTPHeaderMap headerFields; local
128 headerFields.set(HTTPHeaderName::Connection, "close");
129 headerFields.set(HTTPHeaderName::ContentLength, String::number(body.size()));
131 headerFields.set(HTTPHeaderName::ContentType, contentType);
134 connection->sendHTTPResponseHeader(found ? 200 : 404, found ? "OK" : "Not Found", headerFields);
H A DWebSocketServerConnection.cpp100 void WebSocketServerConnection::sendHTTPResponseHeader(int statusCode, const String& statusText, const HTTPHeaderMap& headerFields) argument
108 HTTPHeaderMap::const_iterator end = headerFields.end();
109 for (HTTPHeaderMap::const_iterator it = headerFields.begin(); it != end; ++it) {
180 const HTTPHeaderMap& headers = request->headerFields();
209 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.10/WebKit-7600.1.25/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.10/WebKit2-7600.1.25/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);
208 headerFields.set(lastHeaderKey, value);
212 return headerFields;
215 static NPError parsePostBuffer(bool isFile, const char *buffer, uint32_t length, bool parseHeaders, HTTPHeaderMap& headerFields, Vector<uint8_t>& bodyData) argument
243 headerFields = parseRFC822HeaderFields(postBuffer, location);
249 String contentLength = headerFields.get(HTTPHeaderName::ContentLength);
253 headerFields
291 HTTPHeaderMap headerFields; local
393 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.cpp171 void NetscapePlugin::loadURL(const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, argument
176 controller()->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups());
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DCurlCacheEntry.cpp155 Vector<String> headerFields; local
156 headerContent.split("\n", headerFields);
158 Vector<String>::const_iterator it = headerFields.begin();
159 Vector<String>::const_iterator end = headerFields.end();
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebURLResponse.h71 /* [retval][out] */ IPropertyBag **headerFields);
H A DWebMutableURLRequest.h124 /* [in] */ IPropertyBag *headerFields);
H A DWebURLResponse.cpp359 /* [retval][out] */ IPropertyBag** headerFields)
367 *headerFields = COMPropertyBag<String, String, CaseFoldingHash>::adopt(fields);
358 allHeaderFields( IPropertyBag** headerFields) argument
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/
H A DPluginController.h67 const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) = 0;
H A DPluginProxy.h156 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 DPluginProxy.cpp554 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
556 controller()->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups);
H A DPluginView.h187 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) override;
H A DPluginView.cpp1347 void PluginView::loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) argument
1352 frameLoadRequest.resourceRequest().setHTTPHeaderFields(headerFields);
/macosx-10.10/WebCore-7600.1.25/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(HTTPHeaderName::ContentLength);
1171 headerFields
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceRequestBase.cpp466 void ResourceRequestBase::setHTTPHeaderFields(HTTPHeaderMap headerFields) argument
470 m_httpHeaderFields = WTF::move(headerFields);
/macosx-10.10/WebCore-7600.1.25/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.10/WebKit2-7600.1.25/PluginProcess/
H A DPluginControllerProxy.cpp241 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
243 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
H A DPluginControllerProxy.h88 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) override;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.mm751 RetainPtr<NSMutableDictionary> headerFields = adoptNS([[NSMutableDictionary alloc] init]);
755 [headerFields.get() setObject:referrer forKey:@"Referer"];
759 [headerFields.get() setObject:userAgent forKey:@"User-Agent"];
761 if ([headerFields.get() count])
762 [options.get() setObject:headerFields.get() forKey:@"AVURLAssetHTTPHeaderFieldsKey"];

Completed in 2102 milliseconds