Lines Matching full:dev
10 static inline int z_vrfy_w1_reset_bus(const struct device *dev) in z_vrfy_w1_reset_bus() argument
12 K_OOPS(K_SYSCALL_DRIVER_W1(dev, reset_bus)); in z_vrfy_w1_reset_bus()
14 return z_impl_w1_reset_bus((const struct device *)dev); in z_vrfy_w1_reset_bus()
18 static inline int z_vrfy_w1_read_bit(const struct device *dev) in z_vrfy_w1_read_bit() argument
20 K_OOPS(K_SYSCALL_DRIVER_W1(dev, read_bit)); in z_vrfy_w1_read_bit()
22 return z_impl_w1_read_bit((const struct device *)dev); in z_vrfy_w1_read_bit()
26 static inline int z_vrfy_w1_write_bit(const struct device *dev, bool bit) in z_vrfy_w1_write_bit() argument
28 K_OOPS(K_SYSCALL_DRIVER_W1(dev, write_bit)); in z_vrfy_w1_write_bit()
30 return z_impl_w1_write_bit((const struct device *)dev, bit); in z_vrfy_w1_write_bit()
34 static inline int z_vrfy_w1_read_byte(const struct device *dev) in z_vrfy_w1_read_byte() argument
36 K_OOPS(K_SYSCALL_DRIVER_W1(dev, read_byte)); in z_vrfy_w1_read_byte()
38 return z_impl_w1_read_byte((const struct device *)dev); in z_vrfy_w1_read_byte()
42 static inline int z_vrfy_w1_write_byte(const struct device *dev, uint8_t byte) in z_vrfy_w1_write_byte() argument
44 K_OOPS(K_SYSCALL_DRIVER_W1(dev, write_byte)); in z_vrfy_w1_write_byte()
46 return z_impl_w1_write_byte((const struct device *)dev, (uint8_t)byte); in z_vrfy_w1_write_byte()
50 static inline int z_vrfy_w1_read_block(const struct device *dev, in z_vrfy_w1_read_block() argument
53 K_OOPS(K_SYSCALL_OBJ(dev, K_OBJ_DRIVER_W1)); in z_vrfy_w1_read_block()
56 return z_impl_w1_read_block((const struct device *)dev, in z_vrfy_w1_read_block()
61 static inline int z_vrfy_w1_write_block(const struct device *dev, in z_vrfy_w1_write_block() argument
64 K_OOPS(K_SYSCALL_OBJ(dev, K_OBJ_DRIVER_W1)); in z_vrfy_w1_write_block()
67 return z_impl_w1_write_block((const struct device *)dev, in z_vrfy_w1_write_block()
72 static inline int z_vrfy_w1_change_bus_lock(const struct device *dev, bool lock) in z_vrfy_w1_change_bus_lock() argument
74 K_OOPS(K_SYSCALL_OBJ(dev, K_OBJ_DRIVER_W1)); in z_vrfy_w1_change_bus_lock()
76 return z_impl_w1_change_bus_lock((const struct device *)dev, lock); in z_vrfy_w1_change_bus_lock()
80 static inline int z_vrfy_w1_configure(const struct device *dev, in z_vrfy_w1_configure() argument
83 K_OOPS(K_SYSCALL_DRIVER_W1(dev, configure)); in z_vrfy_w1_configure()
85 return z_impl_w1_configure(dev, type, value); in z_vrfy_w1_configure()
89 static inline size_t z_vrfy_w1_get_slave_count(const struct device *dev) in z_vrfy_w1_get_slave_count() argument
91 K_OOPS(K_SYSCALL_OBJ(dev, K_OBJ_DRIVER_W1)); in z_vrfy_w1_get_slave_count()
93 return z_impl_w1_get_slave_count((const struct device *)dev); in z_vrfy_w1_get_slave_count()
98 static inline int z_vrfy_w1_search_bus(const struct device *dev, in z_vrfy_w1_search_bus() argument
103 K_OOPS(K_SYSCALL_OBJ(dev, K_OBJ_DRIVER_W1)); in z_vrfy_w1_search_bus()
109 return z_impl_w1_search_bus((const struct device *)dev, in z_vrfy_w1_search_bus()