HomeSort by relevance Sort by last modified time
    Searched full:throttle (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEventQueue.java 32 public MonkeyEventQueue(Random random, long throttle, boolean randomizeThrottle) {
35 mThrottle = throttle;
43 long throttle = mThrottle; local
45 throttle = mRandom.nextLong();
46 if (throttle < 0) {
47 throttle = -throttle;
49 throttle %= mThrottle;
50 ++throttle;
52 super.add(new MonkeyThrottleEvent(throttle));
    [all...]
MonkeyThrottleEvent.java 26 * monkey throttle event
31 public MonkeyThrottleEvent(long throttle) {
33 mThrottle = throttle;
MonkeySourceRandomScript.java 50 * @param throttle The amount of time to sleep in ms between events.
51 * @param randomizeThrottle Whether to randomize throttle.
55 long throttle, boolean randomizeThrottle, Random random, long profileWaitTime,
58 mSetupSource = new MonkeySourceScript(random, setupFileName, throttle,
64 mScriptSources.add(new MonkeySourceScript(random, fileName, throttle,
76 * @param throttle The amount of time to sleep in ms between events.
77 * @param randomizeThrottle Whether to randomize throttle.
80 public MonkeySourceRandomScript(ArrayList<String> scriptFileNames, long throttle,
83 this(null, scriptFileNames, throttle, randomizeThrottle, random, profileWaitTime,
MonkeyWaitEvent.java 24 * monkey throttle event
MonkeyEvent.java 55 * @return true if it is safe to throttle after this event, and false otherwise.
  /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/
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);
  /external/chromium/chrome/browser/sync/sessions/
test_util.h 32 ACTION_P(SimulateThrottled, throttle) {
33 SimulateThrottledImpl(arg0, throttle);
  /external/ipsec-tools/src/racoon/
throttle.c 1 /* $NetBSD: throttle.c,v 1.7 2011/03/14 17:18:13 tteras Exp $ */
3 /* Id: throttle.c,v 1.5 2006/04/05 20:54:50 manubsd Exp */
46 #include "throttle.h"
114 * No match, if auth failed, allocate a new throttle entry
122 "Throttle insertion failed\n");
throttle.h 1 /* $NetBSD: throttle.h,v 1.5 2009/01/23 08:25:07 tteras Exp $ */
3 /* Id: throttle.h,v 1.1 2004/11/30 00:46:09 manubsd Exp */
  /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);
  /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(),
  /frameworks/base/services/tests/servicestests/src/com/android/server/
ThrottleServiceTest.java 157 // adjust usage to bump over limit, verify throttle kicks in
161 // and kick poll event which should throttle
184 // provide same stats, but verify that modified policy will throttle
207 // provide stats over limit, verify throttle kicks in
219 // provide slightly updated stats, but verify throttle is removed
223 // and kick poll event which should throttle
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabs.java 55 .setText("Throttle")
57 this, "throttle", LoaderThrottle.ThrottledLoaderListFragment.class)));
  /external/webkit/Source/WebCore/manual-tests/
video-waiting-seeking.html 61 video.src = "http://127.0.0.1:8000/media/video-throttled-load.cgi?name=../../../media/content/test.mp4&throttle=25";
  /packages/apps/Phone/src/com/android/phone/
DataUsage.java 34 * Lists the data usage and throttle settings
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentTabs.java 56 mTabManager.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
FragmentTabsPager.java 61 mTabsAdapter.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
  /external/iproute2/man/man8/
tc-tbf.8 29 TBF is a pure shaper and never schedules traffic. It is non-work-conserving and may throttle
63 This limit is caused by the fact that the kernel can only throttle for at minimum 1 'jiffy', which depends
tc-cbq-details.8 110 If overlimit, in theory, the CBQ could throttle itself for exactly the
112 pass one packet, and throttle again. Due to timer resolution constraints,
333 As mentioned before, CBQ needs to throttle in case of
337 throttle for a longer period, and then pass minburst packets in one
tc-cbq.8 91 If overlimit, in theory, the CBQ could throttle itself for exactly the
93 pass one packet, and throttle again. Due to timer resolution constraints,
250 As mentioned before, CBQ needs to throttle in case of
254 throttle for a longer period, and then pass minburst packets in one
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 291 * Returns the currently configured RX throttle values
297 * Returns the currently configured TX throttle values
  /frameworks/base/services/java/com/android/server/
ThrottleService.java 73 private static final String TESTING_ENABLED_PROPERTY = "persist.throttle.testing";
124 private AtomicInteger mThrottleIndex; // 0 for none, 1 for first throttle val, 2 for next, etc
581 Slog.e(TAG, "error setting Throttle: " + e);
597 Slog.w(TAG, "missing trusted time, skipping throttle check");
601 // check if we need to throttle
610 Slog.e(TAG, "error setting Throttle: " + e);
629 // check if we should warn about throttle
697 Slog.e(TAG, "error clearing Throttle: " + e);
    [all...]
  /external/quake/quake/src/WinQuake/kit/
JOYSTICK.TXT 64 joyadvaxisz - controls mapping of DirectInput axis Z (typically joystick throttle)
150 Here is a config file for making your joystick operate looking around and strafing, your rudder pedals control turning left and right and throttle control moving forward and backward:
151 joyname "Joystick, Rudder & Throttle"
  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.h 99 // Used to throttle UpdateBackingStoreState messages so we don't send them faster than the Web process can handle.

Completed in 511 milliseconds

1 2 3 4 5