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

1 2 3 4 5

  /external/chromium_org/media/audio/
audio_buffers_state.h 18 int total_bytes() { function in struct:media::AudioBuffersState
  /external/chromium_org/content/browser/download/
download_create_info.cc 15 int64 total_bytes,
21 total_bytes(total_bytes),
29 : total_bytes(0),
44 " total_bytes = %" PRId64
49 total_bytes);
save_types.cc 19 total_bytes(0),
28 total_bytes(0),
download_create_info.h 28 int64 total_bytes,
58 int64 total_bytes; member in struct:content::DownloadCreateInfo
save_types.h 63 int64 total_bytes; member in struct:content::SaveFileCreateInfo
save_item.h 55 void SetTotalBytes(int64 total_bytes);
63 int64 total_bytes() const { return total_bytes_; } function in class:content::SaveItem
save_item.cc 128 void SaveItem::SetTotalBytes(int64 total_bytes) {
130 total_bytes_ = total_bytes;
  /external/chromium_org/tools/
include_tracer.py 145 total_bytes = 0
157 return total_bytes
165 return total_bytes
183 total_bytes += Walk(
187 total_bytes += Walk(
190 total_bytes += Walk(
192 return total_bytes + len("".join(lines))
  /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
progress_event.cc 77 event.total_bytes,
84 event.total_bytes);
  /external/chromium_org/content/renderer/media/
buffered_data_source_host_impl.cc 15 void BufferedDataSourceHostImpl::SetTotalBytes(int64 total_bytes) {
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;
buffered_data_source_host_impl.h 24 virtual void SetTotalBytes(int64 total_bytes) OVERRIDE;
  /external/chromium_org/content/public/test/
mock_download_manager.cc 25 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,
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/remoting/protocol/
message_decoder.cc 41 if (!next_payload_known_ || buffer_.total_bytes() < next_payload_)
57 if (buffer_.total_bytes() < kHeaderSize)
  /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;
  /external/chromium_org/chrome/browser/component_updater/
crx_downloader.h 48 int64 total_bytes; member in struct:component_updater::CrxDownloader::DownloadMetrics
68 int64 total_bytes; member in struct:component_updater::CrxDownloader::Result
url_fetcher_downloader.cc 75 result.total_bytes = total_bytes_;
82 download_metrics.total_bytes = total_bytes_;
104 result.total_bytes = total_bytes_;
background_downloader_win.cc 204 int64* total_bytes) {
206 *total_bytes = -1;
221 *total_bytes = job_progress.BytesTotal;
522 int64 total_bytes = -1; local
523 GetJobByteCount(job_, &downloaded_bytes, &total_bytes);
547 download_metrics.total_bytes = total_bytes;
554 result.total_bytes = total_bytes;
619 int64 total_bytes = -1 local
    [all...]
crx_downloader.cc 18 : error(0), downloaded_bytes(-1), total_bytes(-1) {
25 total_bytes(-1),
  /external/chromium_org/chrome/browser/history/
download_row.cc 11 total_bytes(0),
50 total_bytes(total),
  /external/chromium_org/chrome/browser/component_updater/test/
crx_downloader_unittest.cc 171 EXPECT_EQ(-1, download_complete_result_.total_bytes);
193 EXPECT_EQ(1843, download_complete_result_.total_bytes);
200 EXPECT_EQ(1843, download_progress_result_.total_bytes);
232 EXPECT_EQ(1843, download_complete_result_.total_bytes);
239 EXPECT_EQ(1843, download_progress_result_.total_bytes);
314 EXPECT_EQ(1843, download_complete_result_.total_bytes);
321 EXPECT_EQ(1843, download_progress_result_.total_bytes);
347 EXPECT_EQ(1843, download_complete_result_.total_bytes);
354 EXPECT_EQ(1843, download_progress_result_.total_bytes);
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_controller.cc 72 int64 total_bytes,
75 progress_type, received_bytes, total_bytes, estimated_remaining_time);
81 int64 total_bytes) OVERRIDE {
82 delegate_->OnProgress(progress_type, received_bytes, total_bytes);
  /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, total_bytes, NULL, FILE_BEGIN);
188 total_bytes += bytes_read;
205 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN),
  /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...]

Completed in 357 milliseconds

1 2 3 4 5