HomeSort by relevance Sort by last modified time
    Searched refs:throttle (Results 1 - 24 of 24) 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...]
MonkeyThrottleEvent.java 26 * monkey throttle event
31 public MonkeyThrottleEvent(long throttle) {
33 mThrottle = throttle;
MonkeySourceRandomScript.java 50 * @param throttle The amount of time to sleep in ms between events.
51 * @param randomizeThrottle Whether to randomize throttle.
55 long throttle, boolean randomizeThrottle, Random random, long profileWaitTime,
58 mSetupSource = new MonkeySourceScript(random, setupFileName, throttle,
64 mScriptSources.add(new MonkeySourceScript(random, fileName, throttle,
76 * @param throttle The amount of time to sleep in ms between events.
77 * @param randomizeThrottle Whether to randomize throttle.
80 public MonkeySourceRandomScript(ArrayList<String> scriptFileNames, long throttle,
83 this(null, scriptFileNames, throttle, randomizeThrottle, random, profileWaitTime,
MonkeySourceRandom.java 123 long throttle, boolean randomizeThrottle, boolean permissionTargetSystem) {
144 mQ = new MonkeyEventQueue(random, throttle, randomizeThrottle);
MonkeySourceScript.java 169 * @param throttle The amount of time in ms to sleep between events.
171 public MonkeySourceScript(Random random, String filename, long throttle,
174 mQ = new MonkeyEventQueue(random, throttle, randomizeThrottle);
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
ResourceLimits.h 58 static void throttle(const MagickSizeType limit_);
59 static MagickSizeType throttle(void);
  /external/ImageMagick/Magick++/lib/
ResourceLimits.cpp 83 void Magick::ResourceLimits::throttle(const MagickSizeType limit_) function in class:Magick::ResourceLimits
88 MagickCore::MagickSizeType Magick::ResourceLimits::throttle(void) function in class:Magick::ResourceLimits
  /prebuilts/go/darwin-x86/src/net/
tcpsock_unix_test.go 48 throttle := make(chan struct{}, runtime.GOMAXPROCS(-1)*2)
50 throttle <- struct{}{}
53 <-throttle
  /prebuilts/go/linux-x86/src/net/
tcpsock_unix_test.go 48 throttle := make(chan struct{}, runtime.GOMAXPROCS(-1)*2)
50 throttle <- struct{}{}
53 <-throttle
  /system/gatekeeper/
gatekeeper.cpp 53 bool throttle = (pw_handle->version >= HANDLE_VERSION_THROTTLE); local
54 if (throttle) {
74 if (throttle && timeout > 0) {
127 bool throttle = (password_handle->version >= HANDLE_VERSION_THROTTLE); local
129 if (throttle) {
158 if (throttle) ClearFailureRecord(uid, user_id, throttle_secure);
161 if (throttle && timeout > 0) {
  /tools/loganalysis/src/com/android/loganalysis/item/
MonkeyLogItem.java 51 public static final String THROTTLE = "THROTTLE";
76 START_TIME, STOP_TIME, PACKAGES, CATEGORIES, THROTTLE, SEED, TARGET_COUNT,
93 setAttribute(THROTTLE, 0);
157 * Get the throttle for the monkey run.
160 return (Integer) getAttribute(THROTTLE);
164 * Set the throttle for the monkey run.
166 public void setThrottle(int throttle) {
167 setAttribute(THROTTLE, throttle);
    [all...]
SmartMonkeyLogItem.java 46 public static final String THROTTLE = "THROTTLE";
71 START_TIME, STOP_TIME, PACKAGES, THROTTLE, TARGET_INVOCATIONS, ABORTED,
87 setAttribute(THROTTLE, 0);
171 * Get the throttle for the monkey run.
174 return (Integer) getAttribute(THROTTLE);
178 * Set the throttle for the monkey run.
180 public void setThrottle(int throttle) {
181 setAttribute(THROTTLE, throttle);
    [all...]
  /external/ImageMagick/MagickCore/
resource.c 86 throttle,
120 MagickULLConstant(0), /* initial throttle */
130 MagickULLConstant(0), /* throttle limit */
281 ((MagickSizeType) resource_info.throttle < limit) ?
283 (void) FormatMagickSize((MagickSizeType) resource_info.throttle,
649 resource=(MagickSizeType) resource_info.throttle;
829 (void) FormatLocaleFile(file," Throttle: %.20g\n",(double)
84 throttle, member in struct:_ResourceInfo
    [all...]
  /external/mesa3d/src/glx/
dri2_glx.c 89 const __DRI2throttleExtension *throttle; member in struct:dri2_screen
481 * This function uses the DRI2 throttle extension to give the
482 * driver the opportunity to throttle on flush front, copysubbuffer
490 if (psc->throttle) {
496 psc->throttle->throttle(ctx, draw->driDrawable, reason);
1002 psc->throttle = (__DRI2throttleExtension *) extensions[i];
    [all...]
  /external/autotest/client/site_tests/power_Thermal/
power_Thermal.py 124 PER_CORE_FREQ_TEMPLATE % (cpu, 'throttle')))
265 logging.info('full throttle after %d seconds' % count)
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_drawable.c 286 * swap_fences_pop_front - pull a fence from the throttle queue
288 * If the throttle queue is filled to the desired number of fences,
312 * swap_fences_push_back - push a fence onto the throttle queue
314 * push a fence onto the throttle queue and pull fences of the queue
337 * swap_fences_unref - empty the throttle queue
339 * pulls fences of the throttle queue until it is empty.
398 .throttle = dri_throttle,
  /external/mesa3d/include/GL/internal/
dri_interface.h 289 * throttle callbacks.
303 void (*throttle)(__DRIcontext *ctx, member in struct:__DRI2throttleExtensionRec
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/GL/internal/
dri_interface.h 289 * throttle callbacks.
303 void (*throttle)(__DRIcontext *ctx, member in struct:__DRI2throttleExtensionRec
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 308 * Throttle count. This is used to count the overall number of probes sent by JmDNS. When the last throttle increment happened .
313 * Last throttle increment.
    [all...]
  /external/toolchain-utils/cros_utils/
buildbot_json.py 930 # Throttle fetches to not kill the server.
1015 buildbot.auto_throttle = options.throttle
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
hfa384x.h     [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-swf-libraries/1.11.18/
aws-java-sdk-swf-libraries-1.11.18.jar 
  /external/ltp/android/
Android.ltp.mk     [all...]
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 

Completed in 654 milliseconds