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

1 2

  /external/chromium/chrome/browser/history/
download_types.cc 11 int64 total_bytes,
19 total_bytes(total_bytes),
34 total_bytes(0),
download_create_info.cc 16 int64 total_bytes,
25 total_bytes(total_bytes),
42 total_bytes(0),
68 " total_bytes = %" PRId64
78 total_bytes,
download_create_info.h 29 int64 total_bytes,
56 int64 total_bytes; member in struct:DownloadCreateInfo
download_database.cc 24 // total_bytes Total size of the download.
72 "total_bytes INTEGER NOT NULL,"
89 "total_bytes, state "
103 info.total_bytes = statement.ColumnInt64(5);
151 "(full_path, url, start_time, received_bytes, total_bytes, state) "
160 statement.BindInt64(4, info.total_bytes);
  /external/chromium/chrome/browser/download/
download_status_updater.cc 42 int64 total_bytes = 0; local
48 total_bytes += (*i)->GetTotalDownloadBytes();
51 if (total_bytes > 0)
52 *progress = static_cast<float>(received_bytes) / total_bytes;
save_types.cc 18 total_bytes(0),
27 total_bytes(0),
save_types.h 63 int64 total_bytes; member in struct:SaveFileCreateInfo
save_item.h 54 void SetTotalBytes(int64 total_bytes);
62 int64 total_bytes() const { return total_bytes_; } function in class:SaveItem
save_item.cc 127 void SaveItem::SetTotalBytes(int64 total_bytes) {
129 total_bytes_ = total_bytes;
download_item.h 253 int64 total_bytes() const { return total_bytes_; } function in class:DownloadItem
254 void set_total_bytes(int64 total_bytes) { total_bytes_ = total_bytes; }
download_item_model.cc 32 int64 total = download_->total_bytes();
113 int64 total_size = download_->total_bytes();
download_status_updater_unittest.cc 61 void set_total_bytes(int64 total_bytes) {
62 total_bytes_ = total_bytes;
download_item.cc 125 total_bytes_(info.total_bytes),
165 total_bytes_(info.total_bytes),
656 " total_bytes = %" PRId64
665 total_bytes(),
download_manager.cc 968 int64 total_bytes = 0; local
    [all...]
  /external/chromium/base/test/
test_file_util_win.cc 64 int total_bytes = 0; local
82 // Note that SetFilePointer will also fail if total_bytes isn't sector
84 DCHECK((total_bytes % kOneMB) == 0);
85 SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN);
94 total_bytes += bytes_read;
111 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN),
  /external/qemu/distrib/sdl-1.2.12/src/file/
SDL_rwops.c 212 int total_bytes; local
215 total_bytes = size*num;
217 if (!context || context->hidden.win32io.h==INVALID_HANDLE_VALUE || total_bytes<=0 || !size)
233 if (!WriteFile(context->hidden.win32io.h,ptr,total_bytes,&byte_written,NULL)) {
336 size_t total_bytes; local
339 total_bytes = (maxnum * size);
340 if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != (size_t) size) ) {
345 if (total_bytes > mem_available) {
346 total_bytes = mem_available;
349 SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
    [all...]
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 196 jlong tcp_bytes = -1, udp_bytes = -1, total_bytes = -1;
214 total_bytes = (tcp_bytes >= 0) ? tcp_bytes : -1;
218 total_bytes = (udp_bytes >= 0) ? udp_bytes : -1;
222 total_bytes += (tcp_bytes >= 0 ? tcp_bytes : 0);
225 total_bytes += (udp_bytes >= 0 ? udp_bytes : 0);
231 return total_bytes;
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 371 UInt k, total_bytes, swaps, symbol, last_symbol; local
427 total_bytes = (Int)(stream.BytePtr - out);
430 ++ total_bytes;
433 return total_bytes;
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager_unittest.cc 288 size_t total_bytes = 0; local
291 total_bytes += iter->second;
306 EXPECT_GE(expected_total_bytes, total_bytes);
save_file_resource_handler.cc 48 info->total_bytes = content_length_;
download_resource_handler.cc 87 info->total_bytes = content_length_;
  /external/bluetooth/glib/glib/
gfileutils.c 505 gsize total_bytes = 0; local
518 while ((total_bytes + bytes + 1) > total_allocated)
554 memcpy (str + total_bytes, buf, bytes);
556 if (total_bytes + bytes < total_bytes)
567 total_bytes += bytes;
575 total_bytes = 0;
578 str[total_bytes] = '\0';
581 *length = total_bytes;
    [all...]
  /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);
  /system/core/adb/
file_sync_client.c 35 static unsigned total_bytes; variable
48 total_bytes = 0;
55 if(total_bytes == 0) return;
61 ((((long long) total_bytes) * 1000000LL) / t) / 1024LL,
62 (long long) total_bytes, (t / 1000000LL), (t % 1000000LL) / 1000LL);
240 total_bytes += ret;
266 total_bytes += count;
291 total_bytes += len + 1;
504 total_bytes += len;
  /external/e2fsprogs/lib/blkid/
probe.h 640 __u64 total_bytes; member in struct:btrfs_dev_item
702 __u64 total_bytes; member in struct:btrfs_super_block

Completed in 510 milliseconds

1 2