/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XMLHttpRequest.cpp | 661 RefPtr<FormData> httpBody; in send() local 674 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables)); in send() 676 httpBody->setAlwaysStream(true); in send() 679 createRequest(httpBody.release(), exceptionState); in send() 689 RefPtr<FormData> httpBody; in send() local 700 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables)); in send() 702 httpBody->setAlwaysStream(true); in send() 705 createRequest(httpBody.release(), exceptionState); in send() 715 RefPtr<FormData> httpBody; in send() local 730 httpBody = FormData::create(); in send() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | XSSAuditorDelegate.cpp | 87 String httpBody; in generateViolationReport() local 89 if (FormData* formData = frameLoader.documentLoader()->originalRequest().httpBody()) in generateViolationReport() 90 httpBody = formData->flattenToString(); in generateViolationReport() 95 reportDetails->setString("request-body", httpBody); in generateViolationReport()
|
D | XSSAuditor.cpp | 359 FormData* httpBody = documentLoader->request().httpBody(); in init() local 360 if (httpBody && !httpBody->isEmpty()) in init() 361 m_httpBodyAsString = httpBody->flattenToString(); in init()
|
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
D | RequestInit.cpp | 53 RefPtr<FormData> httpBody = domFormData->createMultiPartFormData(); in RequestInit() local 54 for (size_t i = 0; i < httpBody->elements().size(); ++i) { in RequestInit() 55 const FormDataElement& element = httpBody->elements()[i]; in RequestInit() 75 …"multipart/form-data; boundary=", AtomicString::ConstructFromLiteral) + httpBody->boundary().data(… in RequestInit()
|
D | FetchManager.cpp | 280 RefPtr<FormData> httpBody(FormData::create()); in performHTTPFetch() local 281 httpBody->appendBlob(blobDataHandle->uuid(), blobDataHandle); in performHTTPFetch() 282 request.setHTTPBody(httpBody); in performHTTPFetch()
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
D | ResourceRequest.cpp | 232 FormData* ResourceRequest::httpBody() const in httpBody() function in blink::ResourceRequest 237 void ResourceRequest::setHTTPBody(PassRefPtr<FormData> httpBody) in setHTTPBody() argument 239 m_httpBody = httpBody; in setHTTPBody() 308 FormData* formDataA = a.httpBody(); in equalIgnoringHeaderFields() 309 FormData* formDataB = b.httpBody(); in equalIgnoringHeaderFields()
|
D | ResourceRequestTest.cpp | 51 EXPECT_STREQ("Test Body", original.httpBody()->flattenToString().utf8().data()); in TEST() 75 EXPECT_STREQ("Test Body", copy1->httpBody()->flattenToString().utf8().data()); in TEST()
|
D | ResourceRequest.h | 137 FormData* httpBody() const; 138 void setHTTPBody(PassRefPtr<FormData> httpBody);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebHistoryItem.cpp | 192 WebHTTPBody WebHistoryItem::httpBody() const in httpBody() function in blink::WebHistoryItem 197 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody() argument 199 m_private->setFormData(httpBody); in setHTTPBody()
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebURLRequest.cpp | 195 WebHTTPBody WebURLRequest::httpBody() const in httpBody() function in blink::WebURLRequest 197 return WebHTTPBody(m_private->m_resourceRequest->httpBody()); in httpBody() 200 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody() argument 202 m_private->m_resourceRequest->setHTTPBody(httpBody); in setHTTPBody()
|
/external/chromium_org/mojo/services/html_viewer/ |
D | blink_url_request_type_converters.cc | 54 if (request.httpBody().isNull()) in AddRequestBody() 59 while (request.httpBody().elementAt(i++, element)) { in AddRequestBody()
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | RawResource.cpp | 163 if (m_resourceRequest.httpBody() != newRequest.httpBody()) in canReuse()
|
/external/chromium_org/content/child/ |
D | web_url_loader_impl.cc | 405 if (!request.httpBody().isNull()) { in Start() 408 const WebHTTPBody& httpBody = request.httpBody(); in Start() local 412 while (httpBody.elementAt(i++, element)) { in Start() 452 request_body->set_identifier(request.httpBody().identifier()); in Start() 498 new_request.setHTTPBody(request_.httpBody()); in OnReceivedRedirect()
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | NavigationAction.cpp | 62 m_type = navigationType(frameLoadType, isFormSubmission || resourceRequest.httpBody(), event); in NavigationAction()
|
D | HistoryItem.cpp | 188 m_formData = request.httpBody(); in setFormInfoFromRequest()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebHistoryItem.h | 113 BLINK_EXPORT WebHTTPBody httpBody() const;
|
/external/chromium_org/content/renderer/fetchers/ |
D | resource_fetcher_impl.cc | 89 if (!request_.httpBody().isNull()) in Start()
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebURLRequest.h | 166 BLINK_PLATFORM_EXPORT WebHTTPBody httpBody() const;
|
/external/chromium_org/content/renderer/npapi/ |
D | webplugin_impl_unittest.cc | 30 const WebHTTPBody& body = request.httpBody(); in GetBodyText()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorResourceAgent.cpp | 231 if (request.httpBody() && !request.httpBody()->isEmpty()) { in buildObjectForResourceRequest() 233 request.httpBody()->flatten(bytes); in buildObjectForResourceRequest()
|
/external/chromium_org/content/renderer/ |
D | history_serialization.cc | 103 const WebHTTPBody& http_body = item.httpBody(); in GenerateFrameStateFromItem()
|
D | render_frame_impl.cc | 212 if (item.httpBody().isNull()) in ExtractPostId() 215 return item.httpBody().identifier(); in ExtractPostId()
|
D | render_view_browsertest.cc | 397 blink::WebHTTPBody body = entry->root().httpBody(); in TEST_F()
|