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| {
110 bindings::hrtimer_setup(
122 /// Get a pointer to the contained `bindings::hrtimer`.
130 unsafe fn raw_get(this: *const Self) -> *mut bindings::hrtimer {
164 unsafe { bindings::hrtimer_cancel(c_timer_ptr) != 0 }
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;
370 /// Get pointer to the contained `bindings::hrtimer` struct.
378 unsafe fn c_timer_ptr(this: *const Self) -> *const bindings::hrtimer {
397 bindings::hrtimer_start_range_ns(
412 NoRestart = bindings::hrtimer_restart_HRTIMER_NORESTART,
414 Restart = bindings::hrtimer_restart_HRTIMER_RESTART,
418 fn into_c(self) -> bindings::hrtimer_restart {
419 self as bindings::hrtimer_restart
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;