HomeSort by relevance Sort by last modified time
    Searched full:gettotalbytes (Results 1 - 25 of 45) sorted by null

1 2

  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 41 assertTrue(stat.getTotalBytes() > 0);
58 assertTrue(stat.getTotalBytes() > 0);
  /external/chromium_org/chrome/browser/download/
download_query.cc 161 static int GetTotalBytes(const DownloadItem& item) {
162 return item.GetTotalBytes();
304 return AddFilter(BuildFilter<int>(value, EQ, &GetTotalBytes));
306 return AddFilter(BuildFilter<int>(value, GT, &GetTotalBytes));
308 return AddFilter(BuildFilter<int>(value, LT, &GetTotalBytes));
429 sorters_.push_back(Sorter::Build<int>(direction, &GetTotalBytes));
download_query_unittest.cc 502 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2));
503 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(1));
510 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2));
511 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4));
518 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2));
519 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4));
526 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2));
527 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4));
download_status_updater.cc 75 if ((*it)->GetTotalBytes() <= 0) {
80 total_bytes += (*it)->GetTotalBytes();
download_status_updater_mac.mm 161 progress.totalUnitCount = download->GetTotalBytes();
173 progress.totalUnitCount = download->GetTotalBytes();
download_item_model_unittest.cc 71 ON_CALL(item_, GetTotalBytes()).WillByDefault(Return(2));
285 int64 total_bytes; // Return value of GetTotalBytes().
297 // For GetReceivedBytes()/GetTotalBytes(), we only check whether each is
338 EXPECT_CALL(item(), GetTotalBytes())
download_item_model.cc 313 int64 total = GetTotalBytes();
429 int64 DownloadItemModel::GetTotalBytes() const {
431 download_->GetTotalBytes();
606 int64 total = GetTotalBytes();
download_item_model.h 75 int64 GetTotalBytes() const;
download_status_updater_unittest.cc 144 EXPECT_CALL(*item, GetTotalBytes())
download_ui_controller_unittest.cc 224 EXPECT_CALL(*item, GetTotalBytes()).WillRepeatedly(Return(0));
download_history.cc 138 item->GetTotalBytes(),
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CacheStorageUsageInfo.java 74 public long getTotalBytes() {
  /external/chromium_org/content/public/test/
mock_download_item.h 85 MOCK_CONST_METHOD0(GetTotalBytes, int64());
  /frameworks/base/core/java/android/os/
StatFs.java 145 public long getTotalBytes() {
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsTest.java 181 assertEquals(4L, result.getTotalBytes());
188 assertEquals(384L, iface.getTotalBytes());
194 assertEquals(96L, uidSet.getTotalBytes());
203 assertEquals(64L, uidTag.getTotalBytes());
309 assertEquals(128L + 512L + 128L, original.getTotalBytes());
310 assertEquals(128L + 512L, clone.getTotalBytes());
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 613 .andReturn(stats.getTotalBytes()).atLeastOnce();
676 .andReturn(stats.getTotalBytes()).atLeastOnce();
700 .andReturn(stats.getTotalBytes()).atLeastOnce();
724 .andReturn(stats.getTotalBytes()).atLeastOnce();
745 .andReturn(stats.getTotalBytes()).atLeastOnce();
765 .andReturn(stats.getTotalBytes()).atLeastOnce();
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/18/changes/
android.os.StatFs.html 129 <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/os/StatFs.html#getTotalBytes()" target="_top"><code>getTotalBytes</code></A>()</nobr>
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsRecorder.java 211 final long pendingBytes = mPending.getTotalBytes();
377 pw.print("Pending bytes: "); pw.println(mPending.getTotalBytes());
NetworkStatsCollection.java 115 public long getTotalBytes() {
213 noteRecordedHistory(history.getStart(), history.getEnd(), history.getTotalBytes());
NetworkPolicyManagerService.java 703 final long totalBytes = getTotalBytes(policy.template, start, end);
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.c 912 debt = -cast(l_mem, threshold - gettotalbytes(g));
951 g->GCestimate = gettotalbytes(g);
    [all...]
lstate.c 228 lua_assert(gettotalbytes(g) == sizeof(LG));
lstate.h 219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt) macro
  /external/chromium_org/content/browser/download/
download_item_impl_unittest.cc     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 368 long totalBytes = mCacheStorageInfo.getTotalBytes();

Completed in 1078 milliseconds

1 2