Home | History | Annotate | Download | only in monkey

Lines Matching defs:throttle

32     public MonkeyEventQueue(Random random, long throttle, boolean randomizeThrottle) {
35 mThrottle = throttle;
43 long throttle = mThrottle;
45 throttle = mRandom.nextLong();
46 if (throttle < 0) {
47 throttle = -throttle;
49 throttle %= mThrottle;
50 ++throttle;
52 super.add(new MonkeyThrottleEvent(throttle));