Lines Matching defs:timeout
176 * Note: this timeout must be the Xen system time not hrtime (see
180 HYPERVISOR_set_timer_op(uint64_t timeout)
184 return (__hypercall1(__HYPERVISOR_set_timer_op, timeout));
188 uint32_t timeout_hi = (uint32_t)(timeout >> 32);
189 uint32_t timeout_lo = (uint32_t)timeout;
380 * An optional timeout (in nanoseconds, absolute time since boot) may be
381 * specified. Note: this timeout must be the Xen system time not hrtime (see
385 HYPERVISOR_poll(evtchn_port_t *ports, uint_t nr_ports, uint64_t timeout)
392 sched_poll.timeout = timeout;