/third_party/skia/tools/skpbench/ |
H A D | _hardware.py | 54 def __init__(self, message, sleeptime=60): 56 self.sleeptime = sleeptime 62 exact_value=None, name=None, sleeptime=60): 68 self.sleeptime = sleeptime 75 sleeptime=self.sleeptime) 79 sleeptime=self.sleeptime) [all...] |
H A D | _hardware_nexus_6p.py | 81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60), 88 name='ddr clock rate', sleeptime=10)] + \
|
H A D | _hardware_pixel.py | 81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60), 86 name='measured ddr clock', sleeptime=10),
|
H A D | _hardware_pixel_c.py | 76 [Expectation(int, min_value=30, name='battery', sleeptime=30*60), 84 name='cpu_%i clock rate' % i, sleeptime=30)
|
H A D | _hardware_pixel2.py | 108 [Expectation(int, min_value=30, name='battery', sleeptime=30*60), 113 name='measured ddr clock', sleeptime=10),
|
H A D | skpbench.py | 340 (exception.message, exception.sleeptime), file=sys.stderr) 345 time.sleep(exception.sleeptime)
|
/third_party/ltp/testcases/kernel/controllers/cpuctl/ |
H A D | cpuctl_latency_check_task.c | 79 unsigned int actual, actual_s, actual_us, sleeptime; in main() local 113 sleeptime = count * USECONDS; in main() 114 usleep(sleeptime); in main() 123 delta = actual - sleeptime; in main() 135 i++, sleeptime, actual, delta); in main()
|
/third_party/lwip/src/core/ |
H A D | lowpower.c | 356 u32_t sleeptime; in tcpip_timeouts_mbox_fetch() local 369 sleeptime = get_sleep_time(sys_now()); in tcpip_timeouts_mbox_fetch() 370 sleeptime = sleeptime > sys_timeout_get_wake_time() ? sys_timeout_get_wake_time() : sleeptime; in tcpip_timeouts_mbox_fetch() 371 set_timer_state(LOW_TMR_TIMER_WAITING, sleeptime); in tcpip_timeouts_mbox_fetch() 375 ret = sys_arch_mbox_fetch(mbox, msg, sleeptime); in tcpip_timeouts_mbox_fetch()
|
/third_party/lwip/src/api/ |
H A D | tcpip.c | 90 u32_t sleeptime, res; in tcpip_timeouts_mbox_fetch() local 95 sleeptime = sys_timeouts_sleeptime(); in tcpip_timeouts_mbox_fetch() 96 if (sleeptime == SYS_TIMEOUTS_SLEEPTIME_INFINITE) { in tcpip_timeouts_mbox_fetch() 101 } else if (sleeptime == 0) { in tcpip_timeouts_mbox_fetch() 108 res = sys_arch_mbox_fetch(mbox, msg, sleeptime); in tcpip_timeouts_mbox_fetch()
|
/third_party/ltp/testcases/kernel/syscalls/clock_gettime/ |
H A D | leapsec01.c | 124 const struct timespec sleeptime = { 0, NSEC_PER_SEC / 2 }; in run_leapsec() local 156 clock_nanosleep(CLOCK_MONOTONIC, 0, &sleeptime, NULL); in run_leapsec()
|
/third_party/ltp/testcases/kernel/mem/mmapstress/ |
H A D | mmapstress10.c | 138 int sleeptime = SLEEPTIME; variable 211 sleeptime = atoi(optarg); 212 if (sleeptime < 0) { 214 "sleeptime\n"); 769 (void)sleep(sleeptime);
|
/third_party/backends/backend/ |
H A D | xerox_mfp.c | 395 int sleeptime = 10; in dev_cmd_wait() local 411 if (sleeptime > 1000) in dev_cmd_wait() 412 sleeptime = 1000; in dev_cmd_wait() 414 str_cmd(cmd), sleeptime, dev->res[4], dev->res[5]); in dev_cmd_wait() 415 usleep(sleeptime * 1000); in dev_cmd_wait() 416 if (sleeptime < 1000) in dev_cmd_wait() 417 sleeptime *= (sleeptime < 100)? 10 : 2; in dev_cmd_wait()
|
/third_party/curl/src/ |
H A D | tool_operate.c | 539 long sleeptime = 0; in post_per_transfer() local 550 sleeptime = per->retry_sleep; in post_per_transfer() 556 sleeptime = LONG_MAX; in post_per_transfer() 558 sleeptime = (long)retry_after * 1000; /* milliseconds */ in post_per_transfer() 579 m[retry], sleeptime/1000L, per->retry_numretries); in post_per_transfer() 619 *delay = sleeptime; in post_per_transfer()
|