Home | History | Annotate | Download | only in android

Lines Matching refs:delay

135  * - the HAL module sends "set-delay:<delay>", where <delay> is an integer
136 * corresponding to a time delay in milli-seconds. This corresponds to
287 int64_t delay = cl->delay_ms;
339 /* rearm timer, use a minimum delay of 20 ms, just to
345 if (delay < 20)
346 delay = 20;
348 delay *= 1000000LL; /* convert to nanoseconds */
349 qemu_mod_timer(cl->timer, now_ns + delay);
387 /* "set-delay:<delay>" is used to set the delay in milliseconds
390 if (msglen > 10 && !memcmp(msg, "set-delay:", 10)) {