Home
last modified time | relevance | path

Searched refs:received_bytes (Results 1 – 24 of 24) sorted by relevance

/external/chromium/chrome/browser/history/
Ddownload_create_info.cc15 int64 received_bytes, in DownloadCreateInfo() argument
24 received_bytes(received_bytes), in DownloadCreateInfo()
41 received_bytes(0), in DownloadCreateInfo()
77 received_bytes, in DebugString()
Ddownload_types.cc10 int64 received_bytes, in DownloadCreateInfo() argument
18 received_bytes(received_bytes), in DownloadCreateInfo()
33 received_bytes(0), in DownloadCreateInfo()
Ddownload_database.cc102 info.received_bytes = statement.ColumnInt64(4); in QueryDownloads()
109 bool DownloadDatabase::UpdateDownload(int64 received_bytes, in UpdateDownload() argument
119 statement.BindInt64(0, received_bytes); in UpdateDownload()
159 statement.BindInt64(3, info.received_bytes); in CreateDownload()
Ddownload_create_info.h28 int64 received_bytes,
55 int64 received_bytes; member
Ddownload_database.h31 bool UpdateDownload(int64 received_bytes, int32 state, DownloadID db_handle);
Dhistory.cc542 void HistoryService::UpdateDownload(int64 received_bytes, in UpdateDownload() argument
546 received_bytes, state, db_handle); in UpdateDownload()
Dhistory_backend.h240 void UpdateDownload(int64 received_bytes, int32 state, int64 db_handle);
Dhistory.h448 void UpdateDownload(int64 received_bytes, int32 state, int64 db_handle);
Dhistory_backend.cc1118 void HistoryBackend::UpdateDownload(int64 received_bytes, in UpdateDownload() argument
1122 db_->UpdateDownload(received_bytes, state, db_handle); in UpdateDownload()
/external/chromium/chrome/browser/download/
Ddownload_status_updater.cc41 int64 received_bytes = 0; in GetProgress() local
47 received_bytes += (*i)->GetReceivedDownloadBytes(); in GetProgress()
52 *progress = static_cast<float>(received_bytes) / total_bytes; in GetProgress()
Ddownload_item_model.cc31 int64 size = download_->received_bytes(); in GetStatusText()
112 int64 size = download_->received_bytes(); in GetStatusText()
Ddownload_status_updater_unittest.cc57 void set_received_bytes(int64 received_bytes) { in set_received_bytes() argument
58 received_bytes_ = received_bytes; in set_received_bytes()
Dbase_file.cc26 int64 received_bytes, in BaseFile() argument
32 bytes_so_far_(received_bytes), in BaseFile()
Ddownload_file.cc21 info->received_bytes, in DownloadFile()
Dbase_file.h31 int64 received_bytes,
Dsave_item.h63 int64 received_bytes() const { return received_bytes_; } in received_bytes() function
Ddownload_history.cc79 hs->UpdateDownload(download_item->received_bytes(), in UpdateEntry()
Ddownload_manager.cc747 << download->received_bytes() << " for download = " in OnDownloadError()
958 int64 received_bytes = 0; in GetReceivedDownloadBytes() local
961 received_bytes += i->second->received_bytes(); in GetReceivedDownloadBytes()
963 return received_bytes; in GetReceivedDownloadBytes()
Ddownload_util.cc650 static_cast<int>(download->received_bytes())); in CreateDownloadItemValue()
660 static_cast<int>(download->received_bytes())); in CreateDownloadItemValue()
679 int64 size = download->received_bytes(); in GetProgressStatusText()
Ddownload_item.h255 int64 received_bytes() const { return received_bytes_; } in received_bytes() function
Ddownload_item.cc126 received_bytes_(info.received_bytes), in DownloadItem()
Ddownload_browsertest.cc1297 EXPECT_EQ(origin_size, info.received_bytes); in IN_PROC_BROWSER_TEST_F()
Dsave_package.cc774 save_item->url() == page_url_ && !save_item->received_bytes()) { in SaveFinished()
/external/chromium/chrome/browser/renderer_host/
Ddownload_resource_handler.cc86 info->received_bytes = 0; in OnResponseStarted()