Lines Matching full:bindings
79 /// * `self.timer` is initialized by `bindings::hrtimer_setup`.
84 timer: Opaque<bindings::hrtimer>,
105 timer <- Opaque::ffi_init(move |place: *mut bindings::hrtimer| { in new()
110 bindings::hrtimer_setup( in new()
122 /// Get a pointer to the contained `bindings::hrtimer`.
130 unsafe fn raw_get(this: *const Self) -> *mut bindings::hrtimer { in raw_get()
164 unsafe { bindings::hrtimer_cancel(c_timer_ptr) != 0 } in raw_cancel()
292 /// to the `bindings::hrtimer` structure that was used to start the timer.
293 unsafe extern "C" fn run(this: *mut bindings::hrtimer) -> bindings::hrtimer_restart; in run()
370 /// Get pointer to the contained `bindings::hrtimer` struct.
378 unsafe fn c_timer_ptr(this: *const Self) -> *const bindings::hrtimer { in c_timer_ptr()
397 bindings::hrtimer_start_range_ns( in start()
412 NoRestart = bindings::hrtimer_restart_HRTIMER_NORESTART,
414 Restart = bindings::hrtimer_restart_HRTIMER_RESTART,
418 fn into_c(self) -> bindings::hrtimer_restart { in into_c()
419 self as bindings::hrtimer_restart in into_c()
469 const C_MODE: bindings::hrtimer_mode;
482 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS;
492 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL;
501 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS_PINNED;
510 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL_PINNED;
519 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS_SOFT;
528 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL_SOFT;
537 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS_PINNED_SOFT;
546 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL_PINNED_SOFT;
555 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS_HARD;
564 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL_HARD;
573 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_ABS_PINNED_HARD;
582 const C_MODE: bindings::hrtimer_mode = bindings::hrtimer_mode_HRTIMER_MODE_REL_PINNED_HARD;