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 Logger.out.println("Sleeping for " + mThrottle + " milliseconds");
43 Thread.sleep(mThrottle);
Monkey.java 194 long mThrottle = 0;
196 /** Whether to randomize each throttle (0-mThrottle ms) inserted between events. */
584 mThrottle = 0;
643 mEventSource = new MonkeySourceScript(mRandom, mScriptFileNames.get(0), mThrottle,
651 mScriptFileNames, mThrottle, mRandomizeThrottle, mRandom,
656 mThrottle, mRandomizeThrottle, mRandom,
675 mThrottle, mRandomizeThrottle, mPermissionTargetSystem);
867 mThrottle = nextOptionLong("delay (in milliseconds) to wait between events");
    [all...]
MonkeySourceRandom.java 102 private long mThrottle = 0;

Completed in 78 milliseconds