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

12

/external/webkit/Source/WebCore/platform/network/curl/
H A DFormDataStreamCurl.cpp53 if (m_resourceHandle->firstRequest().httpBody())
54 elements = m_resourceHandle->firstRequest().httpBody()->elements();
107 if (m_resourceHandle->firstRequest().httpBody())
108 elements = m_resourceHandle->firstRequest().httpBody()->elements();
H A DResourceHandleManager.cpp466 if (!job->firstRequest().httpBody())
469 Vector<FormDataElement> elements = job->firstRequest().httpBody()->elements();
476 job->firstRequest().httpBody()->flatten(d->m_postBytes);
/external/webkit/Source/WebCore/loader/win/
H A DFrameLoaderWin.cpp58 frameWin->client()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody());
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp248 WebHTTPBody WebHistoryItem::httpBody() const function in class:WebKit::WebHistoryItem
253 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody) argument
256 m_private->setFormData(httpBody);
H A DWebURLRequest.cpp178 WebHTTPBody WebURLRequest::httpBody() const function in class:WebKit::WebURLRequest
180 return WebHTTPBody(m_private->m_resourceRequest->httpBody());
183 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody) argument
185 m_private->m_resourceRequest->setHTTPBody(httpBody);
/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/WebCore/platform/network/
H A DResourceRequestBase.cpp292 FormData* ResourceRequestBase::httpBody() const function in class:WebCore::ResourceRequestBase
299 void ResourceRequestBase::setHTTPBody(PassRefPtr<FormData> httpBody) argument
303 m_httpBody = httpBody;
384 FormData* formDataA = a.httpBody();
385 FormData* formDataB = b.httpBody();
H A DResourceRequestBase.h125 FormData* httpBody() const;
126 void setHTTPBody(PassRefPtr<FormData> httpBody);
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceHandleAndroid.cpp107 FormData* formData = request.httpBody();
/external/webkit/Source/WebCore/loader/
H A DResourceLoader.cpp269 if (FormData* data = m_request.httpBody())
340 if (FormData* data = m_request.httpBody())
354 if (FormData* data = m_request.httpBody())
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceHandleSoup.cpp503 static bool addFormElementsToSoupMessage(SoupMessage* message, const char* contentType, FormData* httpBody, unsigned long& totalBodySize) argument
505 size_t numElements = httpBody->elements().size();
508 httpBody->flatten(body);
518 const FormDataElement& element = httpBody->elements()[i];
593 FormData* httpBody = d->m_firstRequest.httpBody(); local
595 if (httpBody && !httpBody->isEmpty()
596 && !addFormElementsToSoupMessage(soupMessage, contentType.data(), httpBody, d->m_bodySize)) {
/external/webkit/Source/WebKit/chromium/public/
H A DWebHistoryItem.h117 WEBKIT_API WebHTTPBody httpBody() const;
H A DWebURLRequest.h124 WEBKIT_API WebHTTPBody httpBody() const;
/external/chromium/webkit/glue/
H A Dglue_serialize_unittest.cc104 const WebHTTPBody& a_body = a.httpBody();
105 const WebHTTPBody& b_body = b.httpBody();
H A Dweburlloader_impl.cc448 if (!request.httpBody().isNull()) {
451 const WebHTTPBody& httpBody = request.httpBody(); local
454 while (httpBody.elementAt(i++, element)) {
483 bridge_->SetUploadIdentifier(request.httpBody().identifier());
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DNetscapePluginInstanceProxy.mm554 NSData *httpBody = nil;
570 httpBody = [NSData dataWithContentsOfFile:[path _webkit_fixedCarbonPOSIXPath]];
571 if (!httpBody)
574 httpBody = [NSData dataWithBytes:postData length:postLen];
576 if (![httpBody length])
582 if ([httpBody _web_startsWithBlankLine])
583 httpBody = [httpBody subdataWithRange:NSMakeRange(1, [httpBody length] - 1)];
585 NSInteger location = [httpBody _web_locationAfterFirstBlankLin
[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/webkit/Source/WebCore/inspector/
H A DInspectorResourceAgent.cpp225 if (request.httpBody() && !request.httpBody()->isEmpty())
226 requestObject->setString("postData", request.httpBody()->flattenToString());
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceRequestMac.mm162 RefPtr<FormData> formData = httpBody();
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp315 if (firstRequest().httpBody()) {
316 firstRequest().httpBody()->flatten(d->m_formData);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebUrlLoaderClient.cpp124 if (resourceRequest.httpBody() && !(webResourceRequest.method() == "GET" || webResourceRequest.method() == "HEAD")) {
126 Vector<FormDataElement> elements = resourceRequest.httpBody()->elements();

Completed in 955 milliseconds

12