HomeSort by relevance Sort by last modified time
    Searched refs:total_bytes (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation.h 161 virtual void WriteImageProgress(int64 total_bytes, int64 curr_bytes);
195 void OnUnzipProgress(int64 total_bytes, int64 progress_bytes);
operation.cc 261 void Operation::WriteImageProgress(int64 total_bytes, int64 curr_bytes) {
267 int progress = kProgressComplete * curr_bytes / total_bytes;
369 void Operation::OnUnzipProgress(int64 total_bytes, int64 progress_bytes) {
372 int progress_percent = kProgressComplete * progress_bytes / total_bytes;
  /external/chromium_org/chrome/browser/history/
download_row.h 86 int64 total_bytes; member in struct:history::DownloadRow
  /external/chromium_org/content/browser/download/
download_item_factory.h 54 int64 total_bytes,
save_file_resource_handler.cc 54 info->total_bytes = content_length_;
  /external/chromium_org/remoting/base/
compound_buffer.h 60 int total_bytes() const { return total_bytes_; } function in class:remoting::CompoundBuffer
compound_buffer_unittest.cc 61 cropped.CopyFrom(target_, 0, target_.total_bytes());
64 target_.total_bytes() - pos));
69 cropped.CopyFrom(target_, 0, target_.total_bytes());
72 target_.total_bytes() - pos));
105 return buffer.total_bytes() == size &&
compound_buffer.cc 161 DCHECK_LE(end, source.total_bytes());
225 DCHECK_EQ(position_, buffer_->total_bytes());
  /external/chromium_org/cc/test/
layer_tree_pixel_test.cc 276 size_t total_bytes = size.height() * row_bytes; local
277 for (size_t dest_y = 0; dest_y < total_bytes; dest_y += row_bytes) {
279 size_t src_y = total_bytes - dest_y - row_bytes;
329 size_t total_bytes = bitmap.height() * row_bytes; local
331 scoped_ptr<uint8[]> gl_pixels(new uint8[total_bytes]);
334 for (size_t y = 0; y < total_bytes; y += row_bytes) {
336 size_t src_y = total_bytes - y - row_bytes;
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 204 size_t total_bytes = 0; local
210 total_bytes = heap_stats.total_heap_size();
218 total_bytes,
223 size_t total_bytes,
227 total_bytes_ += total_bytes;
  /external/chromium_org/chrome/browser/component_updater/
component_updater_ping_manager.cc 126 if (metrics.total_bytes != -1) {
129 base::Int64ToString(metrics.total_bytes).c_str());
  /external/chromium_org/chrome/browser/component_updater/test/
component_updater_ping_manager_unittest.cc 150 download_metrics.total_bytes = 456;
159 download_metrics.total_bytes = 4560;
  /external/chromium_org/content/browser/android/
download_controller_android_impl.h 62 int64 total_bytes; member in struct:content::DownloadControllerAndroidImpl::DownloadInfoAndroid
  /external/chromium_org/content/public/browser/
download_manager.h 152 int64 total_bytes,
  /external/chromium_org/remoting/protocol/
message_reader.h 112 DCHECK_EQ(stream.position(), buffer->total_bytes());
  /external/chromium_org/components/plugins/renderer/
webview_plugin.cc 76 size_t total_bytes = 0; local
81 total_bytes += it->length();
85 (base::checked_cast<int, size_t>(total_bytes / 1024)));
  /system/core/adb/
file_sync_client.c 36 static unsigned long long total_bytes; variable
49 total_bytes = 0;
56 if(total_bytes == 0) return;
62 ((total_bytes * 1000000LL) / t) / 1024LL,
63 total_bytes, (t / 1000000LL), (t % 1000000LL) / 1000LL);
271 total_bytes += ret;
274 print_transfer_progress(total_bytes, size);
302 total_bytes += count;
331 total_bytes += len + 1;
508 total_bytes += len
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/
web_cache_manager_unittest.cc 289 size_t total_bytes = 0; local
292 total_bytes += iter->second;
307 EXPECT_GE(expected_total_bytes, total_bytes);
  /external/chromium_org/components/nacl/renderer/
nexe_load_manager.cc 152 uint64_t total_bytes) {
168 total_bytes);
172 total_bytes);
nexe_load_manager.h 43 uint64_t total_bytes);
  /external/chromium_org/content/renderer/media/
buffered_data_source.h 33 virtual void SetTotalBytes(int64 total_bytes) = 0;
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 362 static int total_bytes; variable
366 total_bytes += dbuf.dsize;
373 total_bytes = 0;
377 printf("%d records totalling %d bytes\n", count, total_bytes);
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager.h 238 int64 total_bytes,
246 int64 total_bytes) = 0;
  /external/chromium_org/chrome/browser/download/
download_history_unittest.cc 52 EXPECT_EQ(left.total_bytes, right.total_bytes);
249 infos->at(index).total_bytes,
387 int64 total_bytes,
412 info->total_bytes = total_bytes;
444 .WillRepeatedly(Return(total_bytes));
647 // total_bytes
649 info.total_bytes = 102;
    [all...]
  /external/chromium_org/ppapi/c/private/
ppb_nacl_private.h 348 uint64_t total_bytes);
353 uint64_t total_bytes);

Completed in 369 milliseconds

12 3 4 5