Searched defs:sleep_time (Results 1 - 2 of 2) sorted by relevance

/hardware/interfaces/keymaster/4.0/vts/functional/
H A DVerificationTokenTest.cpp55 struct timespec sleep_time = {static_cast<time_t>(milliseconds / 1000), local
57 while (sleep_time.tv_sec || sleep_time.tv_nsec) {
58 if (nanosleep(&sleep_time /* to wait */,
59 &sleep_time /* remaining (on interrruption) */) == 0) {
60 sleep_time = {};
/hardware/libhardware/modules/audio/
H A Daudio_hw.c167 int64_t sleep_time = bytes * 1000000LL / audio_stream_out_frame_size(stream) / local
169 if (sleep_time > 0) {
170 usleep(sleep_time);
173 sleep_time = 0;
175 out->last_write_time_us = now + sleep_time;
312 int64_t sleep_time = bytes * 1000000LL / audio_stream_in_frame_size(stream) / local
314 if (sleep_time > 0) {
315 usleep(sleep_time);
317 sleep_time = 0;
319 in->last_read_time_us = now + sleep_time;
[all...]

Completed in 1635 milliseconds