HomeSort by relevance Sort by last modified time
    Searched defs:total_bytes (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/media/audio/
audio_buffers_state.h 18 int total_bytes() { function in struct:media::AudioBuffersState
  /external/chromium_org/components/nacl/renderer/
progress_event.h 22 total_bytes(0) {
34 total_bytes(total_bytes_param) {
41 uint64_t total_bytes; member in struct:nacl::ProgressEvent
  /external/chromium_org/chrome/browser/download/
download_status_updater.cc 64 int64 total_bytes = 0; local
80 total_bytes += (*it)->GetTotalBytes();
87 if (total_bytes > 0)
88 *progress = static_cast<float>(received_bytes) / total_bytes;
download_item_model_unittest.cc 291 int64 total_bytes; // Return value of GetTotalBytes(). member in struct:TestCase
304 // non-zero. In addition, if |total_bytes| is zero, then
345 .WillRepeatedly(Return(test_case.total_bytes));
  /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/browser/download/
save_types.h 63 int64 total_bytes; member in struct:content::SaveFileCreateInfo
download_create_info.h 28 int64 total_bytes,
58 int64 total_bytes; member in struct:content::DownloadCreateInfo
save_item.h 55 void SetTotalBytes(int64 total_bytes);
63 int64 total_bytes() const { return total_bytes_; } function in class:content::SaveItem
  /external/chromium_org/chrome/browser/history/
download_row.h 86 int64 total_bytes; member in struct:history::DownloadRow
  /external/chromium_org/components/component_updater/
crx_downloader.h 54 int64_t total_bytes; member in struct:component_updater::CrxDownloader::DownloadMetrics
74 int64_t total_bytes; member in struct:component_updater::CrxDownloader::Result
background_downloader_win.cc 207 int64_t* total_bytes) {
209 *total_bytes = -1;
226 *total_bytes = job_progress.BytesTotal;
526 int64_t total_bytes = -1; local
527 GetJobByteCount(job_, &downloaded_bytes, &total_bytes);
551 download_metrics.total_bytes = total_bytes;
558 result.total_bytes = total_bytes;
623 int64_t total_bytes = -1 local
    [all...]
  /external/chromium_org/content/public/test/
mock_download_manager.h 42 int64 total_bytes; member in struct:content::MockDownloadManager::CreateDownloadItemAdapter
61 int64 total_bytes,
116 int64 total_bytes,
  /external/chromium_org/mojo/bindings/js/
drain_data.cc 86 size_t total_bytes = 0; local
88 total_bytes += data_buffers_[i]->size();
90 // Create a total_bytes length ArrayBuffer return value.
93 v8::ArrayBuffer::New(isolate_, total_bytes);
96 CHECK_EQ(total_bytes, buffer.num_bytes());
  /external/chromium_org/remoting/base/
compound_buffer.h 60 int total_bytes() const { return total_bytes_; } function in class:remoting::CompoundBuffer
  /external/chromium_org/base/test/
test_file_util_win.cc 158 int total_bytes = 0; local
176 // Note that SetFilePointer will also fail if total_bytes isn't sector
178 DCHECK((total_bytes % kOneMB) == 0);
179 SetFilePointer(file_handle.Get(), total_bytes, NULL, FILE_BEGIN);
188 total_bytes += bytes_read;
205 CHECK_NE(SetFilePointer(file_handle.Get(), total_bytes, NULL, FILE_BEGIN),
  /external/chromium_org/components/plugins/renderer/
webview_plugin.cc 77 size_t total_bytes = 0; local
82 total_bytes += it->length();
86 (base::checked_cast<int, size_t>(total_bytes / 1024)));
  /external/chromium_org/components/web_cache/browser/
web_cache_manager_unittest.cc 291 size_t total_bytes = 0; local
294 total_bytes += iter->second;
309 EXPECT_GE(expected_total_bytes, 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 210 size_t total_bytes = 0; local
216 total_bytes = heap_stats.total_heap_size();
224 total_bytes,
229 size_t total_bytes,
233 total_bytes_ += total_bytes;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capturer_x11.cc 367 int total_bytes = cursor->size.width ()* cursor->size.height() * local
369 cursor->data.resize(total_bytes);
  /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/qemu/distrib/sdl-1.2.15/src/file/
SDL_rwops.c 272 int total_bytes; local
275 total_bytes = size*num;
277 if (!context || context->hidden.win32io.h==INVALID_HANDLE_VALUE || total_bytes<=0 || !size)
293 if (!WriteFile(context->hidden.win32io.h,ptr,total_bytes,&byte_written,NULL)) {
396 size_t total_bytes; local
399 total_bytes = (maxnum * size);
400 if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != (size_t) size) ) {
405 if (total_bytes > mem_available) {
406 total_bytes = mem_available;
409 SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
    [all...]
  /bionic/libc/bionic/
malloc_debug_check.cpp 530 size_t total_bytes = nmemb * bytes; local
531 size_t size = sizeof(hdr_t) + total_bytes + sizeof(ftr_t);
532 if (size < total_bytes || (nmemb && SIZE_MAX / nmemb < bytes)) { // Overflow
540 add(hdr, total_bytes);
  /external/chromium_org/chrome/browser/extensions/
webstore_installer.cc 734 int64 total_bytes = download->GetTotalBytes(); local
735 if (total_bytes >= 0) {
738 total_bytes / 1024,
745 total_bytes <= 0);
  /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...]

Completed in 1531 milliseconds

1 2