Searched defs:total (Results 26 - 50 of 470) sorted by path

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler.cc1033 void JobScheduler::UpdateProgress(JobID job_id, int64 progress, int64 total) { argument
1038 if (total != -1)
1039 job_entry->job_info.num_total_bytes = total;
/external/chromium_org/chrome/browser/chromeos/imageburner/
H A Dburn_manager.cc471 int64 total) {
481 estimated_remaining_time = elapsed_time * (total - current) / current;
489 DOWNLOADING, current, total, estimated_remaining_time));
469 OnURLFetchDownloadProgress(const net::URLFetcher* source, int64 current, int64 total) argument
H A Dburn_manager.h46 ImageBurnStatus(int64 burnt, int64 total) argument
47 : amount_burnt(burnt), total_size(total) {
317 int64 total) OVERRIDE;
/external/chromium_org/chrome/browser/devtools/device/
H A Dport_forwarding_controller.cc151 int total = result; local
153 new net::DrainableIOBuffer(buffer.get(), total);
157 total,
/external/chromium_org/chrome/browser/download/
H A Ddownload_item_model.cc313 int64 total = GetTotalBytes(); local
322 if (total) {
323 base::string16 total_text = ui::FormatBytes(total);
616 int64 total = GetTotalBytes(); local
617 if (total > 0) {
618 ui::DataUnits amount_units = ui::GetByteDisplayUnits(total);
621 // In RTL locales, we render the text "size/total" in an RTL context. This
624 // we mark the total string as an LTR string if the UI layout is
627 ui::FormatBytesWithUnits(total, amount_units, true));
/external/chromium_org/chrome/browser/drive/
H A Dfake_drive_service.cc295 void FakeDriveService::SetQuotaValue(int64 used, int64 total) { argument
299 about_resource_->set_quota_bytes_total(total);
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dwrite_from_url_operation.cc105 int64 total) {
112 int64 total) {
119 int progress = (kProgressComplete * current) / total;
102 OnURLFetchUploadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
109 OnURLFetchDownloadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/chrome/browser/extensions/
H A Dbundle_installer.cc193 size_t total = GetItemsWithState(state).size(); local
198 bool has_extensions = apps < total;
/external/chromium_org/chrome/browser/history/
H A Ddownload_row.cc31 int64 total,
50 total_bytes(total),
19 DownloadRow( const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start, const base::Time& end, const std::string& etag, const std::string& last_modified, int64 received, int64 total, content::DownloadItem::DownloadState download_state, content::DownloadDangerType danger_type, content::DownloadInterruptReason interrupt_reason, uint32 id, bool download_opened, const std::string& ext_id, const std::string& ext_name) argument
H A Dtyped_url_syncable_service.cc344 int total = 0; local
353 ++total;
366 } else if (total > kMaxTypedUrlVisits) {
367 skip_count = total - kMaxTypedUrlVisits;
/external/chromium_org/chrome/browser/media/
H A Dwebrtc_log_uploader.cc122 const net::URLFetcher* source, int64 current, int64 total) {
121 OnURLFetchUploadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_scan_result_controller.cc216 int total = 0; local
226 total++;
228 if (total > 0) {
230 (granted * 100 / total));
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetch_predictor.cc935 int total = old_row.number_of_hits + old_row.number_of_misses; local
937 ((old_row.average_position * total) + position) / (total + 1);
1210 // Measure the ratio of total number of resources prefetched from network vs
1211 // the total number of resources fetched by the page from the network.
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_metrics.h24 size_t total; member in struct:ProfileMetrics::ProfileCounts
31 : total(0), signedin(0), supervised(0), unused(0), gaia_icon(0) {}
/external/chromium_org/chrome/browser/safe_browsing/
H A Dtwo_phase_uploader.cc45 int64 total) OVERRIDE;
152 int64 total) {
155 << " " << current << "/" << total; local
157 progress_callback_.Run(current, total);
149 OnURLFetchUploadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
H A Dtwo_phase_uploader_unittest.cc27 void ProgressCallback(int64 current, int64 total) {} argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_model_associator.cc703 int total = 0; local
712 ++total;
725 } else if (total > kMaxTypedUrlVisits) {
726 skip_count = total - kMaxTypedUrlVisits;
/external/chromium_org/chrome/browser/thumbnails/
H A Dcontent_analysis_unittest.cc36 unsigned long total = 0; local
41 total += row_data[c];
44 return total;
/external/chromium_org/chrome/browser/ui/webui/chromeos/imageburner/
H A Dimageburner_ui.cc288 base::string16 total; local
289 GetDataSizeText(amount_total, &total);
290 *progress_text = l10n_util::GetStringFUTF16(message_id, finished, total);
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
H A DOAuth.php426 $total = array(); variable
/external/chromium_org/chrome/common/media_galleries/
H A Dpmp_test_util.cc48 std::vector<char> total; local
50 std::copy(a.begin(), a.end(), std::back_inserter(total));
51 std::copy(b.begin(), b.end(), std::back_inserter(total));
53 return total;
/external/chromium_org/components/component_updater/
H A Durl_fetcher_downloader.cc96 int64_t total) {
100 total_bytes_ = total;
93 OnURLFetchDownloadProgress( const net::URLFetcher* source, int64_t current, int64_t total) argument
/external/chromium_org/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/
H A DGCMListener.java69 protected void onDeletedMessages(int total) { argument
/external/chromium_org/components/policy/core/common/cloud/
H A Dexternal_policy_data_fetcher.cc248 int64 total) {
256 // |total|, and it may be -1 when not known.
257 if (current > it->second->max_size || total > it->second->max_size) {
245 OnURLFetchDownloadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/components/search_provider_logos/
H A Dlogo_tracker.cc295 int64 total) {
296 if (total > kMaxDownloadBytes || current > kMaxDownloadBytes) {
293 OnURLFetchDownloadProgress(const net::URLFetcher* source, int64 current, int64 total) argument

Completed in 637 milliseconds

1234567891011>>