HomeSort by relevance Sort by last modified time
    Searched defs:upload_data (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome_frame/
urlmon_upload_data_stream_unittest.cc 14 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 = new net::UploadData() local
139 scoped_refptr<net::UploadData> upload_data = new net::UploadData(); local
    [all...]
  /external/chromium/chrome/common/net/
test_url_fetcher_factory.h 57 // chunks with the upload_data() accessor.
69 const std::string& upload_data() const { return URLFetcher::upload_data(); } function in class:TestURLFetcher
url_fetcher.cc 540 const std::string& URLFetcher::upload_data() const { function in class:URLFetcher
  /external/chromium/net/http/
http_request_info.h 13 #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/
nv30_vertprog.c 60 boolean upload_data = FALSE; local
168 upload_data = TRUE;
178 if (!upload_data)
182 if (!upload_data &&
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_vertprog.c 60 boolean upload_data = FALSE; local
168 upload_data = TRUE;
178 if (!upload_data)
182 if (!upload_data &&
  /external/chromium_org/chrome/browser/automation/
url_request_automation_job.cc 54 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 = upload_data
    [all...]
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_refresh_token_fetcher_unittest.cc 153 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/
better_session_restore_browsertest.cc 80 const net::UploadDataStream* upload_data = request->get_upload(); local
82 if (upload_data) {
84 upload_data->element_readers();
  /external/chromium_org/net/url_request/
test_url_fetcher_factory.h 161 const std::string& upload_data() const { return upload_data_; } function in class:net::TestURLFetcher
  /external/chromium/chrome/common/
automation_messages.h 18 #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/profile_resetter/
profile_resetter_unittest.cc 144 std::string upload_data; member in struct:__anon5465::URLFetcherRequestListener
159 upload_data = test_fetcher->upload_data();
211 EXPECT_NE(std::string::npos, request_listener_.upload_data.find("ABCD"));
    [all...]
  /external/chromium_org/content/browser/geolocation/
network_location_provider_unittest.cc 265 const std::string& upload_data = request.upload_data(); local
266 ASSERT_FALSE(upload_data.empty());
270 upload_data,
network_location_request.cc 76 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);
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client_unittest.cc 708 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) {
845 scoped_ptr<Value> root(base::JSONReader::Read(upload_data));
849 return upload_data;
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api.cc 231 const net::UploadDataStream* upload_data = request->get_upload(); local
232 if (!upload_data ||
253 upload_data->element_readers();
    [all...]

Completed in 946 milliseconds