Lines Matching refs:bindings
84 timer: Opaque<bindings::hrtimer>,
105 timer <- Opaque::ffi_init(move |place: *mut bindings::hrtimer| { in new()
110 bindings::hrtimer_setup( in new()
131 unsafe fn raw_get(this: *const Self) -> *mut bindings::hrtimer { in raw_get()
165 unsafe { bindings::hrtimer_cancel(c_timer_ptr) != 0 } in raw_cancel()
273 unsafe extern "C" fn run(this: *mut bindings::hrtimer) -> bindings::hrtimer_restart; in run()
353 unsafe fn c_timer_ptr(this: *const Self) -> *const bindings::hrtimer { in c_timer_ptr()
372 bindings::hrtimer_start_range_ns( in start()
388 NoRestart = bindings::hrtimer_restart_HRTIMER_NORESTART as u32,
391 Restart = bindings::hrtimer_restart_HRTIMER_RESTART as u32,
395 fn into_c(self) -> bindings::hrtimer_restart { in into_c()
396 self as bindings::hrtimer_restart in into_c()
452 fn into_c(self) -> bindings::hrtimer_mode { in into_c()
453 use bindings::*; in into_c()