Home
last modified time | relevance | path

Searched refs:totalCurrent (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java129 public long totalCurrent = 0; // current transfer bytes field in BluetoothOppNotification.NotificationItem
315 item.totalCurrent = current; in updateActiveNotification()
324 + item.totalCurrent + "; totalTotal=" + item.totalTotal); in updateActiveNotification()
337 progress = (float) item.totalCurrent / item.totalTotal; in updateActiveNotification()
364 BluetoothOppUtility.formatProgressText(item.totalTotal, item.totalCurrent)); in updateActiveNotification()
367 Log.v(TAG, "mCurrentBytes: " + item.totalCurrent + " mTotalBytes: " in updateActiveNotification()
368 + item.totalTotal + " (" + (int) ((item.totalCurrent * 100) in updateActiveNotification()
371 b.setProgress(100, (int) ((item.totalCurrent * 100) / item.totalTotal), in updateActiveNotification()