HomeSort by relevance Sort by last modified time
    Searched defs:mTotalBytes (Results 1 - 9 of 9) sorted by null

  /frameworks/av/cmds/stagefright/
WaveWriter.h 28 mTotalBytes(0) {
40 write_u32(mTotalBytes);
43 write_u32(36 + mTotalBytes);
51 mTotalBytes += size;
66 size_t mTotalBytes;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferInfo.java 44 int mTotalBytes;
BluetoothOppShareInfo.java 63 public int mTotalBytes;
84 mTotalBytes = totalBytes;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CacheStorageUsageInfo.java 32 private long mTotalBytes;
68 mTotalBytes = blockSize * totalBlocks;
75 return mTotalBytes;
88 return mTotalBytes - mUsedBytes;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 58 private long mTotalBytes;
121 mTotalBytes += entry.size;
125 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
152 mTotalBytes -= file.size;
207 if (cursor.moveToNext()) mTotalBytes = cursor.getLong(0);
211 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
224 && mTotalBytes > mCapacity && cursor.moveToNext()) {
237 mTotalBytes -= size;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadCache.java 78 private long mTotalBytes = 0;
159 if (mTotalBytes <= mCapacity) return;
164 && mTotalBytes > mCapacity && cursor.moveToNext()) {
175 mTotalBytes -= size;
190 mTotalBytes += size;
212 mTotalBytes = 0;
215 mTotalBytes = cursor.getLong(SUM_INDEX_SUM);
220 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsCollection.java 79 private long mTotalBytes;
91 mTotalBytes = 0;
116 return mTotalBytes;
458 mTotalBytes += totalBytes;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 92 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
226 public long mTotalBytes;
431 if (mTotalBytes <= 0) {
438 if (maxBytesOverMobile != null && mTotalBytes > maxBytesOverMobile) {
444 && mTotalBytes > recommendedMaxBytesOverMobile) {
534 pw.printPair("mTotalBytes", mTotalBytes);
DownloadThread.java 122 public long mTotalBytes = -1;
148 mTotalBytes = info.mTotalBytes;
294 if (state.mCurrentBytes == state.mTotalBytes) {
689 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mInfo.mTotalBytes);
715 state.mTotalBytes = state.mContentLength;
716 mInfo.mTotalBytes = state.mContentLength;
793 if (mInfo.mTotalBytes != -1) {
794 state.mContentLength = mInfo.mTotalBytes;
    [all...]

Completed in 574 milliseconds