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

12

/external/chromium_org/media/audio/
H A Daudio_buffers_state.h18 int total_bytes() { function in struct:media::AudioBuffersState
/external/chromium_org/components/nacl/renderer/
H A Dprogress_event.h22 total_bytes(0) {
34 total_bytes(total_bytes_param) {
41 uint64_t total_bytes; member in struct:nacl::ProgressEvent
/external/chromium_org/content/browser/download/
H A Ddownload_create_info.cc15 int64 total_bytes,
21 total_bytes(total_bytes),
29 : total_bytes(0),
44 " total_bytes = %" PRId64
49 total_bytes);
14 DownloadCreateInfo(const base::Time& start_time, int64 total_bytes, const net::BoundNetLog& bound_net_log, bool has_user_gesture, ui::PageTransition transition_type, scoped_ptr<DownloadSaveInfo> save_info) argument
H A Dsave_types.h63 int64 total_bytes; member in struct:content::SaveFileCreateInfo
H A Ddownload_create_info.h28 int64 total_bytes,
58 int64 total_bytes; member in struct:content::DownloadCreateInfo
H A Dsave_item.cc128 void SaveItem::SetTotalBytes(int64 total_bytes) { argument
130 total_bytes_ = total_bytes;
H A Dsave_item.h55 void SetTotalBytes(int64 total_bytes);
63 int64 total_bytes() const { return total_bytes_; } function in class:content::SaveItem
/external/chromium_org/content/browser/android/
H A Ddownload_controller_android_impl.h62 int64 total_bytes; member in struct:content::DownloadControllerAndroidImpl::DownloadInfoAndroid
/external/chromium_org/media/blink/
H A Dbuffered_data_source_host_impl.cc15 void BufferedDataSourceHostImpl::SetTotalBytes(int64 total_bytes) { argument
16 total_bytes_ = total_bytes;
25 int64 byte_offset, int64 total_bytes, base::TimeDelta duration) {
26 double position = static_cast<double>(byte_offset) / total_bytes;
24 TimeForByteOffset( int64 byte_offset, int64 total_bytes, base::TimeDelta duration) argument
/external/chromium_org/chrome/browser/download/
H A Ddownload_status_updater.cc64 int64 total_bytes = 0; local
80 total_bytes += (*it)->GetTotalBytes();
87 if (total_bytes > 0)
88 *progress = static_cast<float>(received_bytes) / total_bytes;
H A Ddownload_item_model_unittest.cc291 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/chrome/browser/history/
H A Ddownload_row.h86 int64 total_bytes; member in struct:history::DownloadRow
/external/chromium_org/components/component_updater/
H A Dcrx_downloader.h54 int64_t total_bytes; member in struct:component_updater::CrxDownloader::DownloadMetrics
74 int64_t total_bytes; member in struct:component_updater::CrxDownloader::Result
/external/chromium_org/content/public/test/
H A Dmock_download_manager.h42 int64 total_bytes; member in struct:content::MockDownloadManager::CreateDownloadItemAdapter
61 int64 total_bytes,
116 int64 total_bytes,
H A Dmock_download_manager.cc25 int64 total_bytes,
40 total_bytes(total_bytes),
58 total_bytes(rhs.total_bytes),
80 total_bytes == rhs.total_bytes &&
111 int64 total_bytes,
119 received_bytes, total_bytes, state, danger_type, interrupt_reason,
12 CreateDownloadItemAdapter( uint32 id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened) argument
98 CreateDownloadItem( uint32 id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened) argument
/external/chromium_org/mojo/bindings/js/
H A Ddrain_data.cc86 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/
H A Dcompound_buffer.h60 int total_bytes() const { return total_bytes_; } function in class:remoting::CompoundBuffer
/external/chromium_org/base/test/
H A Dtest_file_util_win.cc158 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/cc/test/
H A Dlayer_tree_pixel_test.cc276 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/browser/extensions/api/image_writer_private/
H A Doperation.cc270 void Operation::WriteImageProgress(int64 total_bytes, int64 curr_bytes) { argument
276 int progress = kProgressComplete * curr_bytes / total_bytes;
378 void Operation::OnUnzipProgress(int64 total_bytes, int64 progress_bytes) { argument
381 int progress_percent = kProgressComplete * progress_bytes / total_bytes;
/external/chromium_org/chrome/renderer/
H A Dchrome_render_process_observer.cc210 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;
228 ReceiveStats(int round_id, size_t total_bytes, size_t used_bytes) argument
/external/chromium_org/components/plugins/renderer/
H A Dwebview_plugin.cc77 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/
H A Dweb_cache_manager_unittest.cc291 size_t total_bytes = 0; local
294 total_bytes += iter->second;
309 EXPECT_GE(expected_total_bytes, total_bytes);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.cc494 void ThreadCache::GetThreadStats(uint64_t* total_bytes, uint64_t* class_count) { argument
496 *total_bytes += h->Size();
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.cc483 void ThreadCache::GetThreadStats(uint64_t* total_bytes, uint64_t* class_count) { argument
485 *total_bytes += h->Size();

Completed in 920 milliseconds

12