OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:throttle
(Results
1 - 7
of
7
) sorted by null
/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
...]
MonkeySourceRandomScript.java
46
* @param
throttle
The amount of time to sleep in ms between events.
47
* @param randomizeThrottle Whether to randomize
throttle
.
51
long
throttle
, boolean randomizeThrottle, Random random) {
53
mSetupSource = new MonkeySourceScript(random, setupFileName,
throttle
,
59
mScriptSources.add(new MonkeySourceScript(random, fileName,
throttle
,
70
* @param
throttle
The amount of time to sleep in ms between events.
71
* @param randomizeThrottle Whether to randomize
throttle
.
74
public MonkeySourceRandomScript(ArrayList<String> scriptFileNames, long
throttle
,
76
this(null, scriptFileNames,
throttle
, randomizeThrottle, random);
MonkeyThrottleEvent.java
26
* monkey
throttle
event
31
public MonkeyThrottleEvent(long
throttle
) {
33
mThrottle =
throttle
;
MonkeySourceRandom.java
204
long
throttle
, boolean randomizeThrottle) {
220
mQ = new MonkeyEventQueue(random,
throttle
, randomizeThrottle);
MonkeySourceScript.java
121
* @param
throttle
The amount of time in ms to sleep between events.
123
public MonkeySourceScript(Random random, String filename, long
throttle
,
126
mQ = new MonkeyEventQueue(random,
throttle
, randomizeThrottle);
/frameworks/base/services/java/com/android/server/
SystemServer.java
102
ThrottleService
throttle
= null;
local
273
Slog.i(TAG, "
Throttle
Service");
274
throttle
= new ThrottleService(context);
276
Context.THROTTLE_SERVICE,
throttle
);
470
final ThrottleService throttleF =
throttle
;
/external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.mm
127
void start(bool
throttle
)
133
if (
throttle
)
[
all
...]
Completed in 416 milliseconds