Lines Matching refs:device
47 typedef int (*gnss_set_fix_rate_t)(const struct device *dev, uint32_t fix_interval_ms);
50 typedef int (*gnss_get_fix_rate_t)(const struct device *dev, uint32_t *fix_interval_ms);
65 typedef int (*gnss_set_navigation_mode_t)(const struct device *dev,
69 typedef int (*gnss_get_navigation_mode_t)(const struct device *dev,
96 typedef int (*gnss_set_enabled_systems_t)(const struct device *dev, gnss_systems_t systems);
99 typedef int (*gnss_get_enabled_systems_t)(const struct device *dev, gnss_systems_t *systems);
102 typedef int (*gnss_get_supported_systems_t)(const struct device *dev, gnss_systems_t *systems);
105 typedef int (*gnss_get_latest_timepulse_t)(const struct device *dev, k_ticks_t *timestamp);
188 typedef void (*gnss_data_callback_t)(const struct device *dev, const struct gnss_data *data);
193 const struct device *dev;
215 typedef void (*gnss_satellites_callback_t)(const struct device *dev,
222 const struct device *dev;
236 __syscall int gnss_set_fix_rate(const struct device *dev, uint32_t fix_interval_ms);
238 static inline int z_impl_gnss_set_fix_rate(const struct device *dev, uint32_t fix_interval_ms) in z_impl_gnss_set_fix_rate()
258 __syscall int gnss_get_fix_rate(const struct device *dev, uint32_t *fix_interval_ms);
260 static inline int z_impl_gnss_get_fix_rate(const struct device *dev, uint32_t *fix_interval_ms) in z_impl_gnss_get_fix_rate()
280 __syscall int gnss_set_navigation_mode(const struct device *dev,
283 static inline int z_impl_gnss_set_navigation_mode(const struct device *dev, in z_impl_gnss_set_navigation_mode()
304 __syscall int gnss_get_navigation_mode(const struct device *dev,
307 static inline int z_impl_gnss_get_navigation_mode(const struct device *dev, in z_impl_gnss_get_navigation_mode()
328 __syscall int gnss_set_enabled_systems(const struct device *dev, gnss_systems_t systems);
330 static inline int z_impl_gnss_set_enabled_systems(const struct device *dev, in z_impl_gnss_set_enabled_systems()
351 __syscall int gnss_get_enabled_systems(const struct device *dev, gnss_systems_t *systems);
353 static inline int z_impl_gnss_get_enabled_systems(const struct device *dev, in z_impl_gnss_get_enabled_systems()
374 __syscall int gnss_get_supported_systems(const struct device *dev, gnss_systems_t *systems);
376 static inline int z_impl_gnss_get_supported_systems(const struct device *dev, in z_impl_gnss_get_supported_systems()
401 __syscall int gnss_get_latest_timepulse(const struct device *dev, k_ticks_t *timestamp);
403 static inline int z_impl_gnss_get_latest_timepulse(const struct device *dev, in z_impl_gnss_get_latest_timepulse()