Searched defs:total_bytes (Results 1 - 18 of 18) sorted by relevance

/external/chromium/chrome/browser/history/
H A Ddownload_types.cc11 int64 total_bytes,
19 total_bytes(total_bytes),
34 total_bytes(0),
7 DownloadCreateInfo(const FilePath& path, const GURL& url, base::Time start_time, int64 received_bytes, int64 total_bytes, int32 state, int32 download_id) argument
H A Ddownload_create_info.cc16 int64 total_bytes,
25 total_bytes(total_bytes),
42 total_bytes(0),
68 " total_bytes = %" PRId64
78 total_bytes,
12 DownloadCreateInfo(const FilePath& path, const GURL& url, base::Time start_time, int64 received_bytes, int64 total_bytes, int32 state, int32 download_id, bool has_user_gesture) argument
H A Ddownload_create_info.h29 int64 total_bytes,
56 int64 total_bytes; member in struct:DownloadCreateInfo
/external/chromium/chrome/browser/download/
H A Ddownload_status_updater.cc42 int64 total_bytes = 0; local
48 total_bytes += (*i)->GetTotalDownloadBytes();
51 if (total_bytes > 0)
52 *progress = static_cast<float>(received_bytes) / total_bytes;
H A Dsave_types.h63 int64 total_bytes; member in struct:SaveFileCreateInfo
H A Ddownload_status_updater_unittest.cc61 void set_total_bytes(int64 total_bytes) { argument
62 total_bytes_ = total_bytes;
H A Dsave_item.cc127 void SaveItem::SetTotalBytes(int64 total_bytes) { argument
129 total_bytes_ = total_bytes;
H A Dsave_item.h54 void SetTotalBytes(int64 total_bytes);
62 int64 total_bytes() const { return total_bytes_; } function in class:SaveItem
H A Ddownload_item.h253 int64 total_bytes() const { return total_bytes_; } function in class:DownloadItem
254 void set_total_bytes(int64 total_bytes) { total_bytes_ = total_bytes; } argument
H A Ddownload_manager.cc945 if (i->second->total_bytes() <= 0)
968 int64 total_bytes = 0; local
971 total_bytes += i->second->total_bytes();
973 return total_bytes;
/external/chromium/base/test/
H A Dtest_file_util_win.cc64 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/chromium/chrome/browser/renderer_host/
H A Dweb_cache_manager_unittest.cc288 size_t total_bytes = 0; local
291 total_bytes += iter->second;
306 EXPECT_GE(expected_total_bytes, total_bytes);
/external/valgrind/main/coregrind/m_initimg/
H A Dsimple_huffman.c371 UInt k, total_bytes, swaps, symbol, last_symbol; local
427 total_bytes = (Int)(stream.BytePtr - out);
430 ++ total_bytes;
433 return total_bytes;
/external/e2fsprogs/lib/ext2fs/
H A Dtdbtool.c362 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/
H A DSDL_rwops.c272 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...]
/external/kernel-headers/original/linux/
H A Dmsm_audio.h362 uint32_t total_bytes; /* Length in bytes used by buffer */ member in struct:msm_acdb_cmd_device
/external/e2fsprogs/lib/blkid/
H A Dprobe.h640 __u64 total_bytes; member in struct:btrfs_dev_item
702 __u64 total_bytes; member in struct:btrfs_super_block
/external/valgrind/main/perf/
H A Dtinycc.c2391 static int total_bytes;
7552 total_bytes += len;
21755 if (total_bytes < 1)
21756 total_bytes = 1;
21758 tok_ident - TOK_IDENT, total_lines, total_bytes,
21760 total_bytes / total_time / 1000000.0);
2389 static int total_bytes; variable

Completed in 692 milliseconds