HomeSort by relevance Sort by last modified time
    Searched refs:DELAY (Results 1 - 25 of 65) sorted by null

1 2 3

  /tools/loganalysis/src/com/android/loganalysis/item/
LatencyItem.java 15 public static final String DELAY = "DELAY";
19 ACTION_ID, DELAY));
37 return (long) getAttribute(DELAY);
40 public void setDelay(long delay) {
41 setAttribute(DELAY, delay);
  /cts/tests/app/src/android/app/cts/
ServiceTest.java 59 private static final int DELAY = 5000;
167 waitForResultOrThrow(DELAY, "service to start first time");
170 waitForResultOrThrow(DELAY, "service to start second time");
179 waitForResultOrThrow(DELAY, "service to be destroyed");
222 Thread.sleep(DELAY);
248 Thread.sleep(DELAY);
283 waitForResultOrThrow(DELAY, EXIST_CONN_TO_RECEIVE_SERVICE);
287 waitForResultOrThrow(DELAY, "new connection to receive service");
302 waitForResultOrThrow(DELAY, EXIST_CONN_TO_LOSE_SERVICE);
314 waitForResultOrThrow(DELAY, EXIST_CONN_TO_RECEIVE_SERVICE)
    [all...]
  /external/autotest/client/site_tests/hardware_Fan/
hardware_Fan.py 51 DELAY = 3
60 time.sleep(self.DELAY)
68 time.sleep(self.DELAY)
73 time.sleep(self.DELAY)
  /external/ltp/tools/pounder21/test_scripts/
statslogging 64 # ten second delay; run 150s before outputting timestamp
65 DELAY=10
74 vmstat $DELAY $COUNT >> vmstat.log
82 iostat -x $DELAY $COUNT >> iostat.log
99 sleep $DELAY
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dummy_thread.py 15 DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
67 def delay_unlock(to_unlock, delay):
69 time.sleep(delay)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
78 "(approx. %s sec.) ***" % DELAY
83 self.assertTrue((end_time - start_time) >= DELAY,
146 def queue_mark(queue, delay):
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
148 time.sleep(delay)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dummy_thread.py 15 DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
67 def delay_unlock(to_unlock, delay):
69 time.sleep(delay)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
78 "(approx. %s sec.) ***" % DELAY
83 self.assertTrue((end_time - start_time) >= DELAY,
146 def queue_mark(queue, delay):
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
148 time.sleep(delay)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dummy_thread.py 15 DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
67 def delay_unlock(to_unlock, delay):
69 time.sleep(delay)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
78 "(approx. %s sec.) ***" % DELAY
83 self.assertTrue((end_time - start_time) >= DELAY,
146 def queue_mark(queue, delay):
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
148 time.sleep(delay)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 15 DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
67 def delay_unlock(to_unlock, delay):
69 time.sleep(delay)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
78 "(approx. %s sec.) ***" % DELAY
83 self.assertTrue((end_time - start_time) >= DELAY,
146 def queue_mark(queue, delay):
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
148 time.sleep(delay)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 15 DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
67 def delay_unlock(to_unlock, delay):
69 time.sleep(delay)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
78 "(approx. %s sec.) ***" % DELAY
83 self.assertTrue((end_time - start_time) >= DELAY,
146 def queue_mark(queue, delay):
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
148 time.sleep(delay)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count
    [all...]
  /cts/suite/audio_quality/test_description/processing/
calc_delay.py 36 """Calcuate delay between two data. data0 is assumed to be recorded first,
38 returns delay between data0 and data1 in number of samples in data0's point of view"""
50 print "***Caluclating delay, may take some time***"
72 DELAY = durationInSec / 2.0 * samplingRate
73 data1 = data0[DELAY:]
74 delay = calc_delay(data0, data1) variable
75 print "calc_delay returned", delay, " while expecting ", DELAY
  /external/linux-kselftest/tools/testing/selftests/timers/
posix_timers.c 20 #define DELAY 2
70 if (abs(diff - DELAY * USECS_PER_SEC) > USECS_PER_SEC / 2) {
83 .it_value.tv_sec = DELAY,
145 .it_value.tv_sec = DELAY,
212 * on DELAY * nr_threads, with nr_threads busy looping, then wait
213 * the normal DELAY since the time is elapsing nr_threads faster.
  /tools/tradefederation/core/src/com/android/tradefed/log/
LogReceiver.java 15 private static final int DELAY = 5;
19 this(device, cmd, LOG_SIZE, DELAY, desc);
  /external/ltp/testcases/realtime/func/pi-tests/
sbrk_mutex.c 53 #define DELAY 1000 /* how long to sleep in the worker thread in us */
92 usleep(DELAY);
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerMeasurement.java 34 private static final int DELAY = 0;
53 PowerTestActivity.MSG_NAVIGATE, TIME_OUT, DELAY);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingTask.java 28 private static final int DELAY = 300;
46 mProcessingHandler.sendMessageDelayed(msg, DELAY);
  /cts/tests/tests/os/src/android/os/cts/
TokenWatcherTest.java 36 private static final int DELAY = 500;
168 Thread.sleep(DELAY);
179 Thread.sleep(DELAY);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
vad2.h 93 #define DELAY 24
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
Bummer.java 28 public static final int DELAY = 1000; // ms
  /frameworks/base/core/java/android/app/
QueuedWork.java 53 /** Delay for delayed runnables, as big as possible but low enough to be barely perceivable */
54 private static final long DELAY = 100;
166 // We should not delay any work as this might delay the finishers
222 handler.sendEmptyMessageDelayed(QueuedWorkHandler.MSG_RUN, DELAY);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiClientTest.java 42 //10s delay for turning on wifi
43 private static final int DELAY = 10000;
107 Thread.sleep(DELAY);
  /toolchain/binutils/binutils-2.25/bfd/
coff-sh.c     [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
arc-opc.c 140 'n' DELAY N field (nullify field)
235 /* Branch delay types. */
236 #define DELAY (FLAGINSN + 1)
240 #define COND (DELAY + 1)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 55 static final int DELAY = 2000;
152 mHandler.postDelayed(mJuggle, DELAY);
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.2.0/
testutils-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.2.0-alpha4/
testutils-25.2.0-alpha4.jar 

Completed in 2816 milliseconds

1 2 3