Lines Matching full:device
17 #include <zephyr/device.h>
25 * @brief Set the haptic device to stop output
26 * @param dev Pointer to the device structure for haptic device instance
28 typedef int (*haptics_stop_output_t)(const struct device *dev);
32 * @brief Set the haptic device to start output for a playback event
34 typedef int (*haptics_start_output_t)(const struct device *dev);
37 * @brief Haptic device API
45 * @brief Set the haptic device to start output for a playback event
47 * @param dev Pointer to the device structure for haptic device instance
52 __syscall int haptics_start_output(const struct device *dev);
54 static inline int z_impl_haptics_start_output(const struct device *dev) in z_impl_haptics_start_output()
62 * @brief Set the haptic device to stop output for a playback event
64 * @param dev Pointer to the device structure for haptic device instance
69 __syscall int haptics_stop_output(const struct device *dev);
71 static inline int z_impl_haptics_stop_output(const struct device *dev) in z_impl_haptics_stop_output()