/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebHTTPBody.cpp | 42 void WebHTTPBody::initialize() in initialize() 47 void WebHTTPBody::reset() in reset() 52 void WebHTTPBody::assign(const WebHTTPBody& other) in assign() 60 size_t WebHTTPBody::elementCount() const in elementCount() 66 bool WebHTTPBody::elementAt(size_t index, Element& result) const in elementAt() 113 void WebHTTPBody::appendData(const WebData& data) in appendData() 121 void WebHTTPBody::appendFile(const WebString& filePath) in appendFile() 127 void WebHTTPBody::appendFileRange(const WebString& filePath, long long fileStart, long long fileLen… in appendFileRange() 133 void WebHTTPBody::appendFileSystemURLRange(const WebURL& url, long long start, long long length, do… in appendFileSystemURLRange() 141 void WebHTTPBody::appendBlob(const WebString& uuid) in appendBlob() [all …]
|
D | WebURLRequest.cpp | 195 WebHTTPBody WebURLRequest::httpBody() const in httpBody() 197 return WebHTTPBody(m_private->m_resourceRequest->httpBody()); in httpBody() 200 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody()
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebHTTPBody.h | 49 class WebHTTPBody { 62 ~WebHTTPBody() { reset(); } in ~WebHTTPBody() 64 WebHTTPBody() : m_private(0) { } in WebHTTPBody() function 65 WebHTTPBody(const WebHTTPBody& b) : m_private(0) { assign(b); } in WebHTTPBody() function 66 WebHTTPBody& operator=(const WebHTTPBody& b) 74 BLINK_PLATFORM_EXPORT void assign(const WebHTTPBody&); 104 BLINK_PLATFORM_EXPORT WebHTTPBody(const WTF::PassRefPtr<FormData>&); 105 BLINK_PLATFORM_EXPORT WebHTTPBody& operator=(const WTF::PassRefPtr<FormData>&);
|
D | WebURLRequest.h | 42 class WebHTTPBody; variable 166 BLINK_PLATFORM_EXPORT WebHTTPBody httpBody() const; 167 BLINK_PLATFORM_EXPORT void setHTTPBody(const WebHTTPBody&);
|
/external/chromium_org/content/renderer/ |
D | history_serialization.cc | 18 using blink::WebHTTPBody; 34 void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input, in ToExplodedHttpBodyElement() 37 case WebHTTPBody::Element::TypeData: in ToExplodedHttpBodyElement() 40 case WebHTTPBody::Element::TypeFile: in ToExplodedHttpBodyElement() 46 case WebHTTPBody::Element::TypeFileSystemURL: in ToExplodedHttpBodyElement() 52 case WebHTTPBody::Element::TypeBlob: in ToExplodedHttpBodyElement() 59 WebHTTPBody* http_body) { in AppendHTTPBodyElement() 61 case WebHTTPBody::Element::TypeData: in AppendHTTPBodyElement() 64 case WebHTTPBody::Element::TypeFile: in AppendHTTPBodyElement() 71 case WebHTTPBody::Element::TypeFileSystemURL: in AppendHTTPBodyElement() [all …]
|
D | render_view_browsertest.cc | 397 blink::WebHTTPBody body = entry->root().httpBody(); in TEST_F() 398 blink::WebHTTPBody::Element element; in TEST_F() 401 EXPECT_EQ(blink::WebHTTPBody::Element::TypeData, element.type); in TEST_F()
|
D | render_frame_impl.cc | 162 using blink::WebHTTPBody; 963 WebHTTPBody http_body; in OnNavigate()
|
/external/chromium_org/mojo/services/html_viewer/ |
D | blink_url_request_type_converters.cc | 58 blink::WebHTTPBody::Element element; in AddRequestBody() 61 case blink::WebHTTPBody::Element::TypeData: in AddRequestBody() 80 case blink::WebHTTPBody::Element::TypeFile: in AddRequestBody() 81 case blink::WebHTTPBody::Element::TypeFileSystemURL: in AddRequestBody() 82 case blink::WebHTTPBody::Element::TypeBlob: in AddRequestBody()
|
/external/chromium_org/content/common/ |
D | page_state_serialization.cc | 28 element.type = blink::WebHTTPBody::Element::TypeData; in AppendDataToHttpBody() 39 element.type = blink::WebHTTPBody::Element::TypeFile; in AppendFileRangeToHttpBody() 53 element.type = blink::WebHTTPBody::Element::TypeFileSystemURL; in AppendURLRangeToHttpBody() 64 element.type = blink::WebHTTPBody::Element::TypeBlob; in AppendBlobToHttpBody() 75 if (elements[i].type == blink::WebHTTPBody::Element::TypeFile) in AppendReferencedFilesFromHttpBody() 424 if (element.type == blink::WebHTTPBody::Element::TypeData) { in WriteHttpBody() 427 } else if (element.type == blink::WebHTTPBody::Element::TypeFile) { in WriteHttpBody() 433 blink::WebHTTPBody::Element::TypeFileSystemURL) { in WriteHttpBody() 439 DCHECK(element.type == blink::WebHTTPBody::Element::TypeBlob); in WriteHttpBody() 457 if (type == blink::WebHTTPBody::Element::TypeData) { in ReadHttpBody() [all …]
|
D | page_state_serialization_unittest.cc | 120 e1.type = blink::WebHTTPBody::Element::TypeData; in PopulateHttpBody() 125 e2.type = blink::WebHTTPBody::Element::TypeFile; in PopulateHttpBody() 166 e1.type = blink::WebHTTPBody::Element::TypeData; in PopulateFrameStateForBackwardsCompatTest() 171 e2.type = blink::WebHTTPBody::Element::TypeFile; in PopulateFrameStateForBackwardsCompatTest() 176 e3.type = blink::WebHTTPBody::Element::TypeData; in PopulateFrameStateForBackwardsCompatTest() 357 p.WriteInt(blink::WebHTTPBody::Element::TypeData); in TEST_F()
|
D | page_state_serialization.h | 21 blink::WebHTTPBody::Element::Type type;
|
D | DEPS | 19 "+third_party/WebKit/public/platform/WebHTTPBody.h",
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebHistoryItem.h | 41 class WebHTTPBody; variable 113 BLINK_EXPORT WebHTTPBody httpBody() const; 114 BLINK_EXPORT void setHTTPBody(const WebHTTPBody&);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebHistoryItem.cpp | 192 WebHTTPBody WebHistoryItem::httpBody() const in httpBody() 194 return WebHTTPBody(m_private->formData()); in httpBody() 197 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody) in setHTTPBody()
|
/external/chromium_org/content/renderer/npapi/ |
D | webplugin_impl_unittest.cc | 12 using blink::WebHTTPBody; 30 const WebHTTPBody& body = request.httpBody(); in GetBodyText() 36 WebHTTPBody::Element element; in GetBodyText() 38 if (element.type == WebHTTPBody::Element::TypeData) { in GetBodyText()
|
D | webplugin_impl.cc | 70 using blink::WebHTTPBody; 643 WebHTTPBody http_body; in SetPostData()
|
/external/chromium_org/content/renderer/pepper/ |
D | url_request_info_util.cc | 37 using blink::WebHTTPBody; 54 WebHTTPBody* http_body) { in AppendFileRefToBody() 190 WebHTTPBody http_body; in CreateWebURLRequest()
|
/external/chromium_org/content/renderer/fetchers/ |
D | resource_fetcher_impl.cc | 23 using blink::WebHTTPBody; 57 WebHTTPBody web_http_body; in SetBody()
|
/external/chromium_org/content/public/common/ |
D | page_state.cc | 88 element.type = blink::WebHTTPBody::Element::TypeData; in CreateForTesting() 94 element.type = blink::WebHTTPBody::Element::TypeFile; in CreateForTesting()
|
/external/chromium_org/content/child/ |
D | web_url_loader_impl.cc | 48 using blink::WebHTTPBody; 408 const WebHTTPBody& httpBody = request.httpBody(); in Start() 410 WebHTTPBody::Element element; in Start() 414 case WebHTTPBody::Element::TypeData: in Start() 422 case WebHTTPBody::Element::TypeFile: in Start() 435 case WebHTTPBody::Element::TypeFileSystemURL: { in Start() 445 case WebHTTPBody::Element::TypeBlob: in Start()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | blink_platform.gypi | 286 'exported/WebHTTPBody.cpp',
|
D | blink_platform.target.linux-arm64.mk | 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
|
D | blink_platform.target.darwin-mips64.mk | 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
|
D | blink_platform.target.linux-x86_64.mk | 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
|
D | blink_platform.target.linux-mips64.mk | 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
|