Searched refs:get_pending_int (Results 1 – 25 of 57) sorted by relevance
123
/Zephyr-latest/drivers/gpio/ |
D | gpio_grgpio2.c | 142 static uint32_t get_pending_int(const struct device *dev) in get_pending_int() function 281 .get_pending_int = get_pending_int,
|
D | gpio_handlers.c | 94 K_OOPS(K_SYSCALL_DRIVER_GPIO(dev, get_pending_int)); in z_vrfy_gpio_get_pending_int()
|
D | gpio_xlnx_ps.c | 97 int_mask = api->get_pending_int(dev_conf->bank_devices[bank]); in gpio_xlnx_ps_isr()
|
D | gpio_neorv32.c | 206 .get_pending_int = neorv32_gpio_get_pending_int,
|
D | gpio_cc13xx_cc26xx.c | 309 .get_pending_int = gpio_cc13xx_cc26xx_get_pending_int,
|
D | gpio_ifx_cat1.c | 233 .get_pending_int = gpio_cat1_get_pending_int,
|
D | gpio_ene_kb1200.c | 186 .get_pending_int = kb1200_gpio_get_pending_int,
|
D | gpio_psoc6.c | 241 .get_pending_int = gpio_psoc6_get_pending_int,
|
D | gpio_xlnx_ps_bank.c | 416 .get_pending_int = gpio_xlnx_ps_bank_get_int_status
|
D | gpio_sedi.c | 285 .get_pending_int = gpio_sedi_get_pending
|
/Zephyr-latest/include/zephyr/drivers/ |
D | gpio.h | 817 uint32_t (*get_pending_int)(const struct device *dev); member 1885 SYS_PORT_TRACING_FUNC_ENTER(gpio, get_pending_int, dev); in z_impl_gpio_get_pending_int() 1887 if (api->get_pending_int == NULL) { in z_impl_gpio_get_pending_int() 1888 SYS_PORT_TRACING_FUNC_EXIT(gpio, get_pending_int, dev, -ENOSYS); in z_impl_gpio_get_pending_int() 1892 ret = api->get_pending_int(dev); in z_impl_gpio_get_pending_int() 1893 SYS_PORT_TRACING_FUNC_EXIT(gpio, get_pending_int, dev, ret); in z_impl_gpio_get_pending_int()
|
D | counter.h | 242 counter_api_get_pending_int get_pending_int; member 561 return api->get_pending_int(dev); in z_impl_counter_get_pending_int()
|
/Zephyr-latest/drivers/counter/ |
D | counter_nrfx_timer.c | 284 static uint32_t get_pending_int(const struct device *dev) in get_pending_int() function 400 .get_pending_int = get_pending_int,
|
D | counter_handlers.c | 20 COUNTER_HANDLER(get_pending_int)
|
D | counter_imx_epit.c | 143 .get_pending_int = imx_epit_get_pending_int,
|
D | counter_esp32_rtc.c | 220 .get_pending_int = counter_esp32_get_pending_int,
|
D | counter_native_posix.c | 237 .get_pending_int = ctr_get_pending_int,
|
D | timer_dtmr_cmsdk_apb.c | 130 .get_pending_int = dtmr_cmsdk_apb_get_pending_int,
|
D | timer_tmr_cmsdk_apb.c | 127 .get_pending_int = tmr_cmsdk_apb_get_pending_int,
|
D | counter_mcux_lpc_rtc.c | 229 .get_pending_int = mcux_lpc_rtc_get_pending_int, 423 .get_pending_int = mcux_lpc_rtc_highres_get_pending_int,
|
D | counter_max32_rtc.c | 233 .get_pending_int = api_get_pending_int,
|
D | counter_nrfx_rtc.c | 539 static uint32_t get_pending_int(const struct device *dev) in get_pending_int() function 684 .get_pending_int = get_pending_int,
|
D | counter_mcux_lptmr.c | 158 .get_pending_int = mcux_lptmr_get_pending_int,
|
D | counter_mcux_gpt.c | 223 .get_pending_int = mcux_gpt_get_pending_int,
|
D | counter_rpi_pico_timer.c | 199 .get_pending_int = counter_rpi_pico_timer_get_pending_int,
|
123