Searched refs:mThrottle (Results 1 - 4 of 4) sorted by relevance

/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeyEventQueue.java29 private long mThrottle; field in class:MonkeyEventQueue
35 mThrottle = throttle;
43 long throttle = mThrottle;
44 if (mRandomizeThrottle && (mThrottle > 0)) {
49 throttle %= mThrottle;
H A DMonkeyThrottleEvent.java29 private long mThrottle; field in class:MonkeyThrottleEvent
33 mThrottle = throttle;
40 System.out.println("Sleeping for " + mThrottle + " milliseconds");
43 Thread.sleep(mThrottle);
H A DMonkey.java197 long mThrottle = 0; field in class:Monkey
199 /** Whether to randomize each throttle (0-mThrottle ms) inserted between events. */
531 mThrottle = 0;
598 mEventSource = new MonkeySourceScript(mRandom, mScriptFileNames.get(0), mThrottle,
606 mScriptFileNames, mThrottle, mRandomizeThrottle, mRandom,
611 mThrottle, mRandomizeThrottle, mRandom,
629 mEventSource = new MonkeySourceRandom(mRandom, mMainApps, mThrottle, mRandomizeThrottle);
820 mThrottle = nextOptionLong("delay (in milliseconds) to wait between events");
H A DMonkeySourceRandom.java101 private long mThrottle = 0; field in class:MonkeySourceRandom

Completed in 57 milliseconds