Lines Matching refs:device
47 const struct device *clock_dev;
56 static int counter_esp32_init(const struct device *dev) in counter_esp32_init()
79 static int counter_esp32_start(const struct device *dev) in counter_esp32_start()
87 static int counter_esp32_stop(const struct device *dev) in counter_esp32_stop()
99 static int counter_esp32_get_value(const struct device *dev, uint32_t *ticks) in counter_esp32_get_value()
108 static int counter_esp32_set_alarm(const struct device *dev, uint8_t chan_id, in counter_esp32_set_alarm()
145 static int counter_esp32_cancel_alarm(const struct device *dev, uint8_t chan_id) in counter_esp32_cancel_alarm()
159 static int counter_esp32_set_top_value(const struct device *dev, in counter_esp32_set_top_value()
171 static uint32_t counter_esp32_get_pending_int(const struct device *dev) in counter_esp32_get_pending_int()
185 static uint32_t counter_esp32_get_top_value(const struct device *dev) in counter_esp32_get_top_value()
192 static uint32_t counter_esp32_get_freq(const struct device *dev) in counter_esp32_get_freq()
227 const struct device *dev = (const struct device *)arg; in counter_esp32_isr()