Home
last modified time | relevance | path

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

/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DOffloadController.java454 final long usedAlertQuota = diff.rxBytes + diff.txBytes; in maybeUpdateStats() local
461 if (mRemainingAlertQuota > 0 && usedAlertQuota > 0) { in maybeUpdateStats()
463 final long newQuota = Math.max(mRemainingAlertQuota - usedAlertQuota, 0); in maybeUpdateStats()
DBpfCoordinator.java2225 long usedAlertQuota = 0; in updateQuotaAndStatsFromSnapshot() local
2232 usedAlertQuota += diff.rxBytes + diff.txBytes; in updateQuotaAndStatsFromSnapshot()
2251 if (mRemainingAlertQuota > 0 && usedAlertQuota > 0) { in updateQuotaAndStatsFromSnapshot()
2253 final long newQuota = Math.max(mRemainingAlertQuota - usedAlertQuota, 0); in updateQuotaAndStatsFromSnapshot()