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

  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEventQueue.java 29 private long mThrottle;
35 mThrottle = throttle;
43 long throttle = mThrottle;
44 if (mRandomizeThrottle && (mThrottle > 0)) {
49 throttle %= mThrottle;
MonkeyThrottleEvent.java 29 private long mThrottle;
33 mThrottle = throttle;
40 System.out.println("Sleeping for " + mThrottle + " milliseconds");
43 Thread.sleep(mThrottle);
Monkey.java 172 long mThrottle = 0;
174 /** Whether to randomize each throttle (0-mThrottle ms) inserted between events. */
483 mThrottle = 0;
547 mEventSource = new MonkeySourceScript(mRandom, mScriptFileNames.get(0), mThrottle,
555 mScriptFileNames, mThrottle, mRandomizeThrottle, mRandom,
560 mThrottle, mRandomizeThrottle, mRandom,
578 mEventSource = new MonkeySourceRandom(mRandom, mMainApps, mThrottle, mRandomizeThrottle);
740 mThrottle = nextOptionLong("delay (in milliseconds) to wait between events");
    [all...]
MonkeySourceRandom.java 204 private long mThrottle = 0;

Completed in 5008 milliseconds