Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppNotification.java132 public long totalTotal = 0; // total bytes for current transfer field in BluetoothOppNotification.NotificationItem
317 item.totalTotal = total; in updateActiveNotification()
325 + item.totalCurrent + "; totalTotal=" + item.totalTotal); in updateActiveNotification()
335 if (item.totalTotal == -1) { in updateActiveNotification()
338 progress = (float) item.totalCurrent / item.totalTotal; in updateActiveNotification()
367 if (item.totalTotal != 0) { in updateActiveNotification()
370 + item.totalTotal + " (" + (int) ((item.totalCurrent * 100) in updateActiveNotification()
371 / item.totalTotal) + " %)"); in updateActiveNotification()
373 b.setProgress(100, (int) ((item.totalCurrent * 100) / item.totalTotal), in updateActiveNotification()
374 item.totalTotal == -1); in updateActiveNotification()
[all …]