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

  /packages/apps/Email/src/com/android/email/data/
ThrottlingCursorLoader.java 19 import com.android.email.Throttle;
30 * A {@link CursorLoader} variant that throttle auto-requery on content changes using
31 * {@link Throttle}.
34 private final Throttle mThrottle;
40 Throttle.DEFAULT_MIN_TIMEOUT, Throttle.DEFAULT_MAX_TIMEOUT);
54 mThrottle = new Throttle(uri.toString(), forceLoadRunnable, new Handler(),
64 if (Throttle.DEBUG) debugLog("startLoading");
71 if (Throttle.DEBUG) debugLog("forceLoad");
78 if (Throttle.DEBUG) debugLog("stopLoading")
    [all...]
  /packages/apps/Email/src/com/android/email/view/
RigidWebView.java 27 import com.android.email.Throttle;
53 private final Throttle mThrottle = new Throttle(getClass().getName(),
  /packages/apps/Email/src/com/android/email/
Throttle.java 28 * This class used to "throttle" a flow of events.
34 * This class is primarily used to throttle content changed events.
36 public class Throttle {
72 public Throttle(String name, Runnable callback, Handler handler) {
77 public Throttle(String name, Runnable callback, Handler handler,int minTimeout,
83 /* package */ Throttle(String name, Runnable callback, Handler handler,int minTimeout,
99 Log.d(Logging.LOG_TAG, "Throttle: [" + mName + "] " + message);
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 35 private final Throttle mTarget = new Throttle("test", mRunnable, new CallItNowHandler(),
127 mClock.advance(Throttle.TIMEOUT_EXTEND_INTERVAL);
132 mClock.advance(Throttle.TIMEOUT_EXTEND_INTERVAL);
137 mClock.advance(Throttle.TIMEOUT_EXTEND_INTERVAL + 1);
  /external/chromium/net/websockets/
websocket_throttle_unittest.cc 79 TEST_F(WebSocketThrottleTest, Throttle) {
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragmentBase.java 64 import com.android.email.Throttle;
    [all...]

Completed in 875 milliseconds