HomeSort by relevance Sort by last modified time
    Searched refs:mPolicyThreshold (Results 1 - 2 of 2) sorted by null

  /packages/apps/Phone/src/com/android/phone/
DataUsageListener.java 55 private long mPolicyThreshold;
120 mPolicyThreshold = mThrottleManager.getCliffThreshold(null, 1);
127 if (mPolicyThreshold == 0) {
156 if (mPolicyThreshold == 0)
158 int dataUsedPercent = (int) ((mDataUsed * 100) / mPolicyThreshold);
177 toReadable(mPolicyThreshold),
182 toReadable(mDataUsed), dataUsedPercent, toReadable(mPolicyThreshold)));
200 toReadable(mPolicyThreshold),
206 toReadable(mPolicyThreshold),
  /frameworks/base/services/java/com/android/server/
ThrottleService.java 94 private AtomicLong mPolicyThreshold;
148 mPolicyThreshold = new AtomicLong();
284 return mPolicyThreshold.get();
452 mPolicyThreshold.set(threshold);
456 mPolicyThreshold.set(TESTING_THRESHOLD);
469 mPolicyThreshold.set(0);
482 if (VDBG || (mPolicyThreshold.get() != 0)) {
484 mPolicyPollPeriodSec + ", threshold=" + mPolicyThreshold.get() +
553 if (VDBG || (mPolicyThreshold.get() != 0)) {
590 long threshold = mPolicyThreshold.get()
    [all...]

Completed in 42 milliseconds