/external/webkit/Source/WebCore/platform/network/curl/ |
D | FormDataStreamCurl.cpp | 53 if (m_resourceHandle->firstRequest().httpBody()) in read() 54 elements = m_resourceHandle->firstRequest().httpBody()->elements(); in read() 107 if (m_resourceHandle->firstRequest().httpBody()) in hasMoreElements() 108 elements = m_resourceHandle->firstRequest().httpBody()->elements(); in hasMoreElements()
|
D | ResourceHandleManager.cpp | 466 if (!job->firstRequest().httpBody()) in setupPOST() 469 Vector<FormDataElement> elements = job->firstRequest().httpBody()->elements(); in setupPOST() 476 job->firstRequest().httpBody()->flatten(d->m_postBytes); in setupPOST()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebURLRequest.cpp | 178 WebHTTPBody WebURLRequest::httpBody() const in httpBody() function in WebKit::WebURLRequest 180 return WebHTTPBody(m_private->m_resourceRequest->httpBody()); in httpBody() 183 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody() argument 185 m_private->m_resourceRequest->setHTTPBody(httpBody); in setHTTPBody()
|
D | WebHistoryItem.cpp | 248 WebHTTPBody WebHistoryItem::httpBody() const in httpBody() function in WebKit::WebHistoryItem 253 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody() argument 256 m_private->setFormData(httpBody); in setHTTPBody()
|
/external/webkit/Source/WebCore/platform/network/ |
D | ResourceRequestBase.cpp | 292 FormData* ResourceRequestBase::httpBody() const in httpBody() function in WebCore::ResourceRequestBase 299 void ResourceRequestBase::setHTTPBody(PassRefPtr<FormData> httpBody) in setHTTPBody() argument 303 m_httpBody = httpBody; in setHTTPBody() 384 FormData* formDataA = a.httpBody(); in equalIgnoringHeaderFields() 385 FormData* formDataB = b.httpBody(); in equalIgnoringHeaderFields()
|
D | ResourceRequestBase.h | 125 FormData* httpBody() const; 126 void setHTTPBody(PassRefPtr<FormData> httpBody);
|
/external/webkit/Source/WebCore/platform/network/soup/ |
D | ResourceHandleSoup.cpp | 503 …sToSoupMessage(SoupMessage* message, const char* contentType, FormData* httpBody, unsigned long& t… in addFormElementsToSoupMessage() argument 505 size_t numElements = httpBody->elements().size(); in addFormElementsToSoupMessage() 508 httpBody->flatten(body); in addFormElementsToSoupMessage() 518 const FormDataElement& element = httpBody->elements()[i]; in addFormElementsToSoupMessage() 593 FormData* httpBody = d->m_firstRequest.httpBody(); in startHTTPRequest() local 595 if (httpBody && !httpBody->isEmpty() in startHTTPRequest() 596 … && !addFormElementsToSoupMessage(soupMessage, contentType.data(), httpBody, d->m_bodySize)) { in startHTTPRequest()
|
/external/webkit/Source/WebCore/html/parser/ |
D | XSSFilter.cpp | 177 FormData* httpBody = documentLoader->originalRequest().httpBody(); in init() local 178 if (httpBody && !httpBody->isEmpty()) { in init() 179 String httpBodyAsString = httpBody->flattenToString(); in init()
|
/external/webkit/Source/WebCore/loader/ |
D | ResourceLoader.cpp | 269 if (FormData* data = m_request.httpBody()) in didReceiveResponse() 340 if (FormData* data = m_request.httpBody()) in didFail() 354 if (FormData* data = m_request.httpBody()) in didCancel()
|
/external/webkit/Source/WebCore/loader/win/ |
D | FrameLoaderWin.cpp | 58 …ent()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody()); in submitForm()
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
D | NetscapePluginInstanceProxy.mm | 554 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_locationAfterFirstBlankLine]; 588 NSData *headerData = [httpBody subdataWithRange:NSMakeRange(0, location)]; 590 unsigned dataLength = [httpBody length] - location; [all …]
|
/external/chromium/webkit/glue/ |
D | weburlloader_impl.cc | 448 if (!request.httpBody().isNull()) { in Start() 451 const WebHTTPBody& httpBody = request.httpBody(); in Start() local 454 while (httpBody.elementAt(i++, element)) { in Start() 483 bridge_->SetUploadIdentifier(request.httpBody().identifier()); in Start()
|
D | glue_serialize_unittest.cc | 104 const WebHTTPBody& a_body = a.httpBody(); in HistoryItemExpectEqual() 105 const WebHTTPBody& b_body = b.httpBody(); in HistoryItemExpectEqual()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
D | PluginController.h | 58 …const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) = 0;
|
D | PluginProxy.h | 107 …get, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups…
|
D | PluginView.h | 123 … const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
|
D | PluginProxy.cpp | 370 …ring& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) in loadURL() argument 372 …m_pluginController->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPop… in loadURL()
|
/external/webkit/Source/WebCore/platform/network/android/ |
D | ResourceHandleAndroid.cpp | 107 FormData* formData = request.httpBody(); in willLoadFromCache()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebHistoryItem.h | 117 WEBKIT_API WebHTTPBody httpBody() const;
|
D | WebURLRequest.h | 124 WEBKIT_API WebHTTPBody httpBody() const;
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorResourceAgent.cpp | 225 if (request.httpBody() && !request.httpBody()->isEmpty()) in buildObjectForResourceRequest() 226 requestObject->setString("postData", request.httpBody()->flattenToString()); in buildObjectForResourceRequest()
|
/external/webkit/Source/WebCore/platform/network/win/ |
D | ResourceHandleWin.cpp | 315 if (firstRequest().httpBody()) { in start() 316 firstRequest().httpBody()->flatten(d->m_formData); in start()
|
/external/webkit/Source/WebKit2/PluginProcess/ |
D | PluginControllerProxy.cpp | 202 …ring& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups) in loadURL() argument 204 …luginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_… in loadURL()
|
D | PluginControllerProxy.h | 84 …get, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups…
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | WebUrlLoaderClient.cpp | 123 …if (resourceRequest.httpBody() && !(webResourceRequest.method() == "GET" || webResourceRequest.met… in WebUrlLoaderClient() 125 Vector<FormDataElement> elements = resourceRequest.httpBody()->elements(); in WebUrlLoaderClient()
|