Searched defs:upload_data (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/chrome_frame/
H A Durlmon_upload_data_stream_unittest.cc14 scoped_refptr<net::UploadData> upload_data = new net::UploadData(); local
15 upload_data->AppendBytes(random_string, random_string_length);
22 upload_stream->Initialize(upload_data.get());
49 scoped_refptr<net::UploadData> upload_data = new net::UploadData(); local
50 upload_data->AppendBytes(big_buffer, kBigBufferLength);
57 upload_stream->Initialize(upload_data.get());
83 scoped_refptr<net::UploadData> upload_data = new net::UploadData(); local
84 upload_data->AppendBytes(random_string, random_string_length);
91 upload_stream->Initialize(upload_data.get());
104 scoped_refptr<net::UploadData> upload_data local
139 scoped_refptr<net::UploadData> upload_data = new net::UploadData(); local
[all...]
H A Dplugin_url_request.cc25 net::UploadData* upload_data, ResourceType::Type resource_type,
37 if (upload_data) {
48 if (!upload_stream->Initialize(upload_data)) {
54 is_chunked_upload_ = upload_data->is_chunked();
22 Initialize(PluginUrlRequestDelegate* delegate, int remote_request_id, const std::string& url, const std::string& method, const std::string& referrer, const std::string& extra_headers, net::UploadData* upload_data, ResourceType::Type resource_type, bool enable_frame_busting, int load_flags) argument
H A Durlmon_upload_data_stream.cc15 net::UploadDataStream* CreateUploadDataStream(net::UploadData* upload_data) { argument
17 const ScopedVector<net::UploadElement>& elements = upload_data->elements();
19 if (upload_data->is_chunked()) {
22 net::UploadDataStream::CHUNKED, upload_data->identifier());
27 i == elements.size() - 1 && upload_data->last_chunk_appended();
55 upload_data->identifier());
62 bool UrlmonUploadDataStream::Initialize(net::UploadData* upload_data) { argument
63 upload_data_ = upload_data;
64 request_body_stream_.reset(CreateUploadDataStream(upload_data));
H A Dmetrics_service.cc98 const std::string& upload_data,
106 HRESULT hr = data_uploader->UploadData(upload_data, server_url, mime_type);
115 HRESULT UploadData(const std::string& upload_data, argument
118 if (upload_data.empty()) {
125 upload_data_size_ = upload_data.size() + 1;
137 cache_stream_->Write(upload_data.c_str(), upload_data_size_, &written);
97 UploadDataHelper( const std::string& upload_data, const std::string& server_url, const std::string& mime_type) argument
/external/chromium/chrome/common/net/
H A Dtest_url_fetcher_factory.h57 // chunks with the upload_data() accessor.
69 const std::string& upload_data() const { return URLFetcher::upload_data(); } function in class:TestURLFetcher
H A Durl_fetcher.cc540 const std::string& URLFetcher::upload_data() const { function in class:URLFetcher
/external/chromium/net/http/
H A Dhttp_request_info.h13 #include "net/base/upload_data.h"
45 scoped_refptr<UploadData> upload_data; member in struct:net::HttpRequestInfo
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_vertprog.c60 boolean upload_data = FALSE; local
168 upload_data = TRUE;
178 if (!upload_data)
182 if (!upload_data &&
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_vertprog.c60 boolean upload_data = FALSE; local
168 upload_data = TRUE;
178 if (!upload_data)
182 if (!upload_data &&
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_url_fetcher.cc102 const std::string& upload_data) {
105 upload_data_ = upload_data;
101 SetUploadData(const std::string& upload_content_type, const std::string& upload_data) argument
/external/chromium_org/chrome/browser/managed_mode/
H A Dmanaged_user_refresh_token_fetcher_unittest.cc153 const std::string upload_data = url_fetcher->upload_data(); local
155 EXPECT_TRUE(GetValueForKey(upload_data, "profile_id", &managed_user_id));
158 EXPECT_TRUE(GetValueForKey(upload_data, "device_name", &device_name));
173 EXPECT_TRUE(GetValueForKey(url_fetcher->upload_data(), "code", &auth_code));
/external/chromium_org/chrome/browser/sessions/
H A Dbetter_session_restore_browsertest.cc80 const net::UploadDataStream* upload_data = request->get_upload(); local
82 if (upload_data) {
84 upload_data->element_readers();
/external/chromium/chrome/common/
H A Dautomation_messages.h18 #include "net/base/upload_data.h"
191 scoped_refptr<net::UploadData> upload_data,
200 scoped_refptr<net::UploadData> upload_data; member in struct:AutomationURLRequest
/external/chromium_org/chrome/browser/automation/
H A Durl_request_automation_job.cc54 net::UploadData* upload_data = new net::UploadData(); local
62 upload_data->AppendBytes(bytes_reader->bytes(), bytes_reader->length());
66 upload_data->AppendFileRange(file_reader->path(),
74 upload_data->set_identifier(upload_data_stream->identifier());
75 upload_data->set_is_chunked(upload_data_stream->is_chunked());
76 upload_data->set_last_chunk_appended(
78 return upload_data;
513 scoped_refptr<net::UploadData> upload_data; local
515 upload_data = CreateUploadData(request_->get_upload());
525 automation_request.upload_data
[all...]
/external/chromium_org/net/url_request/
H A Dtest_url_fetcher_factory.h161 const std::string& upload_data() const { return upload_data_; } function in class:net::TestURLFetcher
/external/chromium_org/chrome/browser/profile_resetter/
H A Dprofile_resetter_unittest.cc144 std::string upload_data; member in struct:__anon5775::URLFetcherRequestListener
159 upload_data = test_fetcher->upload_data();
211 EXPECT_NE(std::string::npos, request_listener_.upload_data.find("ABCD"));
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_client_unittest.cc708 const std::string& upload_data = fetcher->upload_data(); local
709 EXPECT_EQ(request_body, GetData(upload_data));
742 const std::string& upload_data = fetcher->upload_data(); local
744 base::SplitStringIntoKeyValuePairs(upload_data, '=', '&', &tokens);
844 std::string GetData(const std::string& upload_data) { argument
845 scoped_ptr<Value> root(base::JSONReader::Read(upload_data));
849 return upload_data;
/external/chromium_org/content/browser/geolocation/
H A Dnetwork_location_provider_unittest.cc265 const std::string& upload_data = request.upload_data(); local
266 ASSERT_FALSE(upload_data.empty());
270 upload_data,
H A Dnetwork_location_request.cc76 std::string* upload_data);
131 std::string upload_data; local
132 FormUploadData(wifi_data, timestamp, access_token, &upload_data);
133 url_fetcher_->SetUploadData("application/json", upload_data);
211 std::string* upload_data) {
224 base::JSONWriter::Write(&request, upload_data);
208 FormUploadData(const WifiData& wifi_data, const base::Time& timestamp, const base::string16& access_token, std::string* upload_data) argument
/external/chromium_org/chrome/browser/extensions/api/web_request/
H A Dweb_request_api.cc231 const net::UploadDataStream* upload_data = request->get_upload(); local
232 if (!upload_data ||
253 upload_data->element_readers();

Completed in 756 milliseconds