HomeSort by relevance Sort by last modified time
    Searched refs:sleep_time (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/
platform_thread_posix.cc 51 struct timespec sleep_time, remaining; local
54 sleep_time.tv_sec = duration_ms / 1000;
55 duration_ms -= sleep_time.tv_sec * 1000;
58 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
60 while (nanosleep(&sleep_time, &remaining) == -1 && errno == EINTR)
61 sleep_time = remaining;
  /external/bluetooth/glib/gio/fen/
fen-data.c 106 guint sleep_time; local
108 sleep_time = _pow (BASE_NUM, data->changed_event_num) * SCAN_CHANGINGS_TIME;
109 if (sleep_time < SCAN_CHANGINGS_MIN_TIME) {
110 sleep_time = SCAN_CHANGINGS_MIN_TIME;
111 } else if (sleep_time > SCAN_CHANGINGS_MAX_TIME) {
112 sleep_time = SCAN_CHANGINGS_MAX_TIME;
115 FD_W ("SCALABE SCAN num:time [ %4u : %4u ] %s\n", data->changed_event_num, sleep_time, FN_NAME(data));
116 return sleep_time;
  /external/v8/tools/
test.py 470 sleep_time = INITIAL_SLEEP_TIME
479 time.sleep(sleep_time)
480 sleep_time = sleep_time * SLEEP_TIME_FACTOR
481 if sleep_time > MAX_SLEEP_TIME:
482 sleep_time = MAX_SLEEP_TIME
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 1593 LCHAR sleep_time [P_PATH_MAX]; local
    [all...]

Completed in 1557 milliseconds