HomeSort by relevance Sort by last modified time
    Searched defs:Sleep (Results 1 - 25 of 32) sorted by null

1 2

  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
before_initialization_fixture.cc 13 #include "webrtc/system_wrappers/include/sleep.h"
50 void BeforeInitializationFixture::Sleep(long milliseconds) {
  /external/sfntly/cpp/src/test/
platform_thread.cc 51 void PlatformThread::Sleep(int32_t duration_ms) {
52 ::Sleep(duration_ms);
85 void PlatformThread::Sleep(int32_t duration_ms) {
  /external/libmojo/mojo/edk/system/
test_utils.cc 13 #include "base/threading/platform_thread.h" // For |Sleep()|.
50 void Sleep(MojoDeadline deadline) {
53 base::PlatformThread::Sleep(
  /prebuilts/go/darwin-x86/doc/codewalk/
urlpoll.go 79 // Sleep sleeps for an appropriate interval (dependent on error state)
81 func (r *Resource) Sleep(done chan<- *Resource) {
82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount))
114 go r.Sleep(pending)
  /prebuilts/go/darwin-x86/src/time/
sleep.go 7 // Sleep pauses the current goroutine for at least the duration d.
8 // A negative or zero duration causes Sleep to return immediately.
9 func Sleep(d Duration)
  /prebuilts/go/linux-x86/doc/codewalk/
urlpoll.go 79 // Sleep sleeps for an appropriate interval (dependent on error state)
81 func (r *Resource) Sleep(done chan<- *Resource) {
82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount))
114 go r.Sleep(pending)
  /prebuilts/go/linux-x86/src/time/
sleep.go 7 // Sleep pauses the current goroutine for at least the duration d.
8 // A negative or zero duration causes Sleep to return immediately.
9 func Sleep(d Duration)
  /external/autotest/server/cros/cfm/configurable_test/
actions.py 302 class Sleep(Action):
310 @param num_seconds The number of seconds to sleep.
315 time.sleep(self._num_seconds)
318 return 'Sleep[num_seconds=%s]' % self._num_seconds
337 @param retry_delay_seconds The number of seconds to sleep between
363 time.sleep(self._retry_delay_seconds)
404 time.sleep(1)
  /packages/apps/Nfc/nci/jni/
NfcTag.h 30 enum ActivationState { Idle, Sleep, Active };
113 ** Description: What is the current state: Idle, Sleep, or Activated.
115 ** Returns: Idle, Sleep, or Activated.
124 ** Description: Set the current state: Idle or Sleep.
  /external/libchrome/base/threading/
platform_thread_posix.cc 168 void PlatformThread::Sleep(TimeDelta duration) {
  /external/libmojo/mojo/public/c/system/tests/
core_perftest.cc 188 Sleep(kPerftestTimeMicroseconds);
241 void Sleep(int64_t microseconds) {
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuThunk.h 249 EMU_SLEEP Sleep;
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 49 const char *Sleep() { return Yellow(); }
62 , sleep()
250 Printf("%s", d.Sleep());
251 Printf(" As if synchronized via sleep:\n");
339 if (rep->sleep)
340 PrintSleep(rep->sleep);
  /external/ltp/testcases/kernel/io/disktest/
sfunc.c 652 void Sleep(unsigned int msecs)
  /external/rmi4utils/rmidevice/
rmidevice.cpp 226 rc = Sleep(RMI_F01_DEFAULT_RESET_DELAY_MS);
333 int Sleep(int ms)
  /external/v8/tools/release/
test_scripts.py 436 def Sleep(self, seconds):
    [all...]
common_includes.py 271 def Sleep(self, seconds):
272 time.sleep(seconds)
392 self.step._side_effect_handler.Sleep(wait_interval)
480 self._side_effect_handler.Sleep(wait_time)
  /external/v8/src/base/platform/
platform-posix.cc 246 void OS::Sleep(TimeDelta interval) {
platform-win32.cc 832 void OS::Sleep(TimeDelta interval) {
833 ::Sleep(static_cast<DWORD>(interval.InMilliseconds()));
    [all...]
  /art/test/004-ThreadStress/src-art/
Main.java 52 // -sleep:X .......... frequency of Sleep (double)
201 private final static class Sleep extends Operation {
207 Thread.sleep(SLEEP_TIME);
265 Thread.sleep((int)(Math.random() * 50 + 50));
293 Thread.sleep(SLEEP_TIME);
325 frequencyMap.put(new Sleep(), 0.125); // 25/200
335 frequencyMap.put(new Sleep(), 0.2); // 40/200
345 frequencyMap.put(new Sleep(), 0.2); // 40/200
386 } else if (split[0].equals("-sleep")) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Protocol/WinNtThunk/
WinNtThunk.h 1124 WinNtSleep Sleep;
  /device/linaro/bootloader/edk2/Nt32Pkg/Include/Protocol/
WinNtThunk.h 1139 WinNtSleep Sleep;
  /external/python/cpython2/Modules/
_tkinter.c 317 /* Millisecond sleep() for Unix platforms. */
320 Sleep(int milli)
340 Sleep(100);
    [all...]
  /external/python/cpython3/Modules/
_tkinter.c 346 /* Millisecond sleep() for Unix platforms. */
349 Sleep(int milli)
369 Sleep(100);
    [all...]
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 

Completed in 1687 milliseconds

1 2