Searched defs:maxTimeout (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DTimeoutListPreference.java72 public void removeUnusableTimeouts(long maxTimeout, EnforcedAdmin admin) { argument
83 maxTimeout = Long.MAX_VALUE;
90 if (timeout <= maxTimeout) {
110 if (userPreference <= maxTimeout) {
114 == maxTimeout) {
116 setValue(String.valueOf(maxTimeout));
119 // maxTimeout. The user can still select anything less than maxTimeout.
120 // TODO: maybe append maxTimeout to the list and mark selected.
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DThrottle.java79 int maxTimeout) {
80 this(name, callback, handler, minTimeout, maxTimeout, Clock.INSTANCE, TIMER);
86 int maxTimeout, Clock clock, Timer timer) {
87 if (maxTimeout < minTimeout) {
96 mMaxTimeout = maxTimeout;
78 Throttle(String name, Runnable callback, Handler handler,int minTimeout, int maxTimeout) argument
85 Throttle(String name, Runnable callback, Handler handler,int minTimeout, int maxTimeout, Clock clock, Timer timer) argument

Completed in 173 milliseconds