Lines Matching defs:event
36 * the timer routine runs, it checks each possible event; events that are
43 * we keep track only of the lowest-numbered pending event, in
45 * expiration time is set to the timeout value for this event.
56 * Delay lengths for the hrtimer event types.
58 * the event types indexed by enum ehci_hrtimer_event in ehci.h.
75 /* Enable a pending hrtimer event */
76 static void ehci_enable_event(struct ehci_hcd *ehci, unsigned event,
79 ktime_t *timeout = &ehci->hr_timeouts[event];
82 *timeout = ktime_add(ktime_get(), event_delays_ns[event]);
83 ehci->enabled_hrtimer_events |= (1 << event);
85 /* Track only the lowest-numbered pending event */
86 if (event < ehci->next_hrtimer_event) {
87 ehci->next_hrtimer_event = event;
379 * Handler functions for the hrtimer event types.
380 * Keep this array in the same order as the event types indexed by
413 * Check each pending event. If its time has expired, handle
414 * the event; otherwise re-enable it.