Home
last modified time | relevance | path

Searched refs:sleepTime (Results 1 – 18 of 18) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/std/thread/futures/futures.unique_future/
Dwait_for.pass.cpp31 static const ms sleepTime(500); variable
36 std::this_thread::sleep_for(sleepTime); in func1()
44 std::this_thread::sleep_for(sleepTime); in func3()
51 std::this_thread::sleep_for(sleepTime); in func5()
78 assert(t1 - t0 >= sleepTime); in test()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/thread/futures/futures.shared_future/
Dwait_for.pass.cpp29 static const ms sleepTime(500); variable
34 std::this_thread::sleep_for(sleepTime); in func1()
42 std::this_thread::sleep_for(sleepTime); in func3()
49 std::this_thread::sleep_for(sleepTime); in func5()
109 assert(t1 - t0 >= sleepTime); in main()
125 assert(t1 - t0 >= sleepTime); in main()
141 assert(t1 - t0 >= sleepTime); in main()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
DRedrawer.java19 private long sleepTime; field in Redrawer
86 wait(sleepTime); in run()
108 sleepTime = (long)(1000 / refreshRate); in setMaxRefreshRate()
110 refreshRate + "( " + sleepTime + " ms)"); in setMaxRefreshRate()
/external/google-benchmark/src/
Dsleep.cc44 div_t sleepTime = div(microseconds, kNumMicrosPerSecond);
45 int seconds = sleepTime.quot;
48 while (usleep(sleepTime.rem) == -1 && errno == EINTR)
/external/proguard/src/proguard/gui/splash/
DSplashPanel.java166 long sleepTime = (long)(sleepFactor * repaintTime); in run() local
167 if (sleepTime < 10L) in run()
169 sleepTime = 10L; in run()
172 Thread.sleep(sleepTime); in run()
/external/cronet/base/test/android/java/src/org/chromium/base/
DGarbageCollectionTestUtils.java29 final long sleepTime = GC_SLEEP_TIME; in canBeGarbageCollected() local
38 Thread.sleep(sleepTime); in canBeGarbageCollected()
/external/testng/src/test/java/test/tmp/
DAssertEqualsTest.java21 int sleepTime = new Random().nextInt(500); in f1() local
22 Thread.sleep(sleepTime); in f1()
/external/lz4/tests/
Dtest-lz4-speed.py149 sleepTime = 30
152 % (os.getloadavg()[0], args.maxLoadAvg, sleepTime))
153 time.sleep(sleepTime)
290 print("sleepTime=%s" % args.sleepTime)
326 log("sleep for %s seconds" % args.sleepTime)
327 time.sleep(args.sleepTime)
DREADME.md24 After `sleepTime` (an optional parameter, default 300 seconds) seconds the script checks repository…
39 …speed.py "silesia.tar calgary.tar" "email@gmail.com" --message "tested on my laptop" --sleepTime 60
62 --sleepTime SLEEPTIME
/external/zstd/tests/
DDEPRECATED-test-zstd-speed.py152 sleepTime = 30
155 % (os.getloadavg()[0], args.maxLoadAvg, sleepTime))
156 time.sleep(sleepTime)
317 print("sleepTime=%s" % args.sleepTime)
352 time.sleep(args.sleepTime)
369 log("sleep for %s seconds" % args.sleepTime)
DREADME.md69 After `sleepTime` (an optional parameter, default 300 seconds) seconds the script checks repository…
84 …speed.py "silesia.tar calgary.tar" "email@gmail.com" --message "tested on my laptop" --sleepTime 60
107 --sleepTime SLEEPTIME
/external/deqp/framework/delibs/deutil/
DdeTimer.c320 int sleepTime = 0; in timerThread() local
335 sleepTime = thread->interval - (int)(((deInt64)deGetMicroseconds()-lastCallback)/1000); in timerThread()
336 if (sleepTime > 0) in timerThread()
337 deSleep(sleepTime); in timerThread()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DSocketTransportWrapper.java170 long sleepTime = 4 * 1000; // milliseconds in attach() local
178 Thread.sleep(sleepTime); in attach()
/external/walt/ios/WALT/
DWALTClient.m310 uint64_t sleepTime = (_sync.maxError - _sync.minError) / kSleepTimeDivider;
311 if (sleepTime > kMaxSleepTime) { sleepTime = kMaxSleepTime; }
312 if (sleepTime < kMinSleepTime) { sleepTime = kMinSleepTime; }
335 Sleep(sleepTime);
/external/angle/util/posix/
Dtest_utils_posix.cpp336 timespec sleepTime = { in Sleep() local
341 nanosleep(&sleepTime, nullptr); in Sleep()
/external/armnn/tests/profiling/gatordmock/tests/
DGatordMockTests.cpp111 …function<bool()> predicate, std::string errorMsg, uint32_t timeout = 2000, uint32_t sleepTime = 50) in WaitFor() argument
120 std::this_thread::sleep_for(std::chrono::milliseconds(sleepTime)); in WaitFor()
121 timeSlept += sleepTime; in WaitFor()
/external/deqp/execserver/tools/
DxsTest.cpp728 const int sleepTime = 200; in runClient() local
770 deSleep(sleepTime); in runClient()
/external/python/cpython2/Mac/Modules/ae/
D_AEmodule.c39 static pascal Boolean AEIdleProc(EventRecord *theEvent, long *sleepTime, RgnHandle *mouseRgn) in AEIdleProc() argument