HomeSort by relevance Sort by last modified time
    Searched refs:mTotalBytes (Results 1 - 17 of 17) 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 long mTotalBytes;
BluetoothOppShareInfo.java 63 public long mTotalBytes;
84 mTotalBytes = totalBytes;
BluetoothOppTransferActivity.java 281 Formatter.formatFileSize(this, mTransInfo.mTotalBytes));
300 Formatter.formatFileSize(this, mTransInfo.mTotalBytes));
319 Formatter.formatFileSize(this, mTransInfo.mTotalBytes));
446 if (mTransInfo.mTotalBytes != 0) {
448 Log.v(TAG, "mCurrentBytes: " + mTransInfo.mCurrentBytes + " mTotalBytes: "
449 + mTransInfo.mTotalBytes + " (" + (int) ((mTransInfo.mCurrentBytes * 100)
450 / mTransInfo.mTotalBytes) + "%)");
453 (int) ((mTransInfo.mCurrentBytes * 100) / mTransInfo.mTotalBytes));
458 mPercentView.setText(BluetoothOppUtility.formatProgressText(mTransInfo.mTotalBytes,
BluetoothOppIncomingFileConfirmActivity.java 139 Formatter.formatFileSize(this, mTransInfo.mTotalBytes));
BluetoothOppService.java 271 + info.mTotalBytes);
736 Log.v(TAG, "TOTAL : " + info.mTotalBytes);
    [all...]
BluetoothOppNotification.java 366 Log.v(TAG, "mCurrentBytes: " + item.totalCurrent + " mTotalBytes: "
592 .setContentInfo(Formatter.formatFileSize(mContext, info.mTotalBytes))
BluetoothOppUtility.java 99 info.mTotalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
  /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/Settings/src/com/android/settings/deviceinfo/storage/
StorageSummaryDonutPreferenceController.java 38 private long mTotalBytes;
61 Formatter.formatShortFileSize(mContext, mTotalBytes)));
62 summary.setPercent(mUsedBytes, mTotalBytes);
90 mTotalBytes = total;
  /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);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 152 public long mTotalBytes;
173 mTotalBytes = info.mTotalBytes;
187 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mTotalBytes);
316 if (mInfoDelta.mTotalBytes == -1) {
317 mInfoDelta.mTotalBytes = mInfoDelta.mCurrentBytes;
365 && !mInfo.isMeteredAllowed(mInfoDelta.mTotalBytes)) {
539 final boolean hasLength = mInfoDelta.mTotalBytes != -1;
585 if (mInfoDelta.mTotalBytes > 0 && mStorage.isAllocationSupported(outFd)) {
586 mStorage.allocateBytes(outFd, mInfoDelta.mTotalBytes);
    [all...]
Helpers.java 159 builder.setRequiredNetworkType(info.getRequiredNetworkType(info.mTotalBytes));
169 if (info.mTotalBytes > 0) {
173 builder.setEstimatedNetworkBytes(info.mTotalBytes - info.mCurrentBytes);
175 builder.setEstimatedNetworkBytes(info.mTotalBytes);
DownloadInfo.java 85 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
171 public long mTotalBytes;
423 pw.printPair("mTotalBytes", mTotalBytes);
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 103 private long mTotalBytes;
119 mTotalBytes = 0;
144 return mTotalBytes;
660 mTotalBytes += totalBytes;
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 439 milliseconds