/hal_espressif-latest/components/esp_rom/include/esp32s2/rom/ |
D | ets_sys.h | 399 void ets_isr_attach(int i, ets_isr_t func, void *arg); 496 #define ETS_WMAC_INTR_ATTACH(func, arg) \ argument 497 ETS_ISR_ATTACH(ETS_WMAC_INUM, (func), (void *)(arg)) 499 #define ETS_TG0_T0_INTR_ATTACH(func, arg) \ argument 500 ETS_ISR_ATTACH(ETS_TG0_T0_INUM, (func), (void *)(arg)) 502 #define ETS_GPIO_INTR_ATTACH(func, arg) \ argument 503 ETS_ISR_ATTACH(ETS_GPIO_INUM, (func), (void *)(arg)) 505 #define ETS_UART0_INTR_ATTACH(func, arg) \ argument 506 ETS_ISR_ATTACH(ETS_UART0_INUM, (func), (void *)(arg)) 508 #define ETS_WDT_INTR_ATTACH(func, arg) \ argument [all …]
|
/hal_espressif-latest/components/esp_rom/include/esp32s3/rom/ |
D | ets_sys.h | 397 void ets_isr_attach(int i, ets_isr_t func, void *arg); 483 #define ETS_WMAC_INTR_ATTACH(func, arg) \ argument 484 ETS_ISR_ATTACH(ETS_WMAC_INUM, (func), (void *)(arg)) 486 #define ETS_TG0_T0_INTR_ATTACH(func, arg) \ argument 487 ETS_ISR_ATTACH(ETS_TG0_T0_INUM, (func), (void *)(arg)) 489 #define ETS_GPIO_INTR_ATTACH(func, arg) \ argument 490 ETS_ISR_ATTACH(ETS_GPIO_INUM, (func), (void *)(arg)) 492 #define ETS_UART0_INTR_ATTACH(func, arg) \ argument 493 ETS_ISR_ATTACH(ETS_UART0_INUM, (func), (void *)(arg)) 495 #define ETS_WDT_INTR_ATTACH(func, arg) \ argument [all …]
|
/hal_espressif-latest/components/esp_rom/include/esp32/rom/ |
D | ets_sys.h | 88 void ets_set_idle_cb(ets_idle_cb_t func, void *arg); 464 void ets_isr_attach(int i, ets_isr_t func, void *arg); 561 #define ETS_WMAC_INTR_ATTACH(func, arg) \ argument 562 ETS_ISR_ATTACH(ETS_WMAC_INUM, (func), (void *)(arg)) 564 #define ETS_TG0_T0_INTR_ATTACH(func, arg) \ argument 565 ETS_ISR_ATTACH(ETS_TG0_T0_INUM, (func), (void *)(arg)) 567 #define ETS_GPIO_INTR_ATTACH(func, arg) \ argument 568 ETS_ISR_ATTACH(ETS_GPIO_INUM, (func), (void *)(arg)) 570 #define ETS_UART0_INTR_ATTACH(func, arg) \ argument 571 ETS_ISR_ATTACH(ETS_UART0_INUM, (func), (void *)(arg)) [all …]
|
/hal_espressif-latest/components/esp_system/ |
D | esp_ipc.c | 73 esp_ipc_func_t func = s_func[cpuid]; in ipc_task() local 81 (*func)(func_arg); in ipc_task() 83 (*func)(func_arg); in ipc_task() 126 static esp_err_t esp_ipc_call_and_wait(uint32_t cpu_id, esp_ipc_func_t func, void* arg, esp_ipc_wai… in esp_ipc_call_and_wait() argument 155 s_func[cpu_id] = func; in esp_ipc_call_and_wait() 167 esp_err_t esp_ipc_call(uint32_t cpu_id, esp_ipc_func_t func, void* arg) in esp_ipc_call() argument 169 return esp_ipc_call_and_wait(cpu_id, func, arg, IPC_WAIT_FOR_START); in esp_ipc_call() 172 esp_err_t esp_ipc_call_blocking(uint32_t cpu_id, esp_ipc_func_t func, void* arg) in esp_ipc_call_blocking() argument 174 return esp_ipc_call_and_wait(cpu_id, func, arg, IPC_WAIT_FOR_END); in esp_ipc_call_blocking() 177 esp_err_t esp_ipc_call_nonblocking(uint32_t cpu_id, esp_ipc_func_t func, void* arg) in esp_ipc_call_nonblocking() argument [all …]
|
D | check_system_init_priorities.py | 26 def __init__(self, filename: str, func: str, affinity: str, priority: int) -> None: 28 self.func = func 67 func=match[0],
|
/hal_espressif-latest/components/bt/common/osi/ |
D | allocator.c | 34 const char *func; member 57 mem_dbg_info[i].func = NULL; in osi_mem_dbg_init() 70 void osi_mem_dbg_record(void *p, int size, const char *func, int line) in osi_mem_dbg_record() argument 83 mem_dbg_info[i].func = func; in osi_mem_dbg_record() 91 OSI_TRACE_ERROR("%s full %s %d !!\n", __func__, func, line); in osi_mem_dbg_record() 108 void osi_mem_dbg_clean(void *p, const char *func, int line) in osi_mem_dbg_clean() argument 122 mem_dbg_info[i].func = NULL; in osi_mem_dbg_clean() 130 OSI_TRACE_ERROR("%s full %s %d !!\n", __func__, func, line); in osi_mem_dbg_clean() 140 …, f %s, l %d\n", mem_dbg_info[i].p, mem_dbg_info[i].size, mem_dbg_info[i].func, mem_dbg_info[i].li… in osi_mem_dbg_show()
|
D | thread.c | 29 osi_thread_func_t func; member 165 item.func(item.context); in osi_thread_run() 330 bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, ui… in osi_thread_post() argument 333 assert(func != NULL); in osi_thread_post() 341 item.func = func; in osi_thread_post() 378 struct osi_event *osi_event_create(osi_thread_func_t func, void *context) in osi_event_create() argument 383 event->item.func = func; in osi_event_create() 421 if (event != NULL && event->item.func != NULL) { in osi_thread_generic_event_handler() 425 event->item.func(event->item.context); in osi_thread_generic_event_handler()
|
/hal_espressif-latest/components/esp_system/port/arch/xtensa/ |
D | esp_ipc_isr.c | 56 static void esp_ipc_isr_call_and_wait(esp_ipc_isr_func_t func, void* arg, esp_ipc_isr_wait_t wait_f… 79 void IRAM_ATTR esp_ipc_isr_asm_call(esp_ipc_isr_func_t func, void* arg) in esp_ipc_isr_asm_call() argument 82 esp_ipc_isr_call_and_wait(func, arg, IPC_ISR_WAIT_FOR_START); in esp_ipc_isr_asm_call() 86 void IRAM_ATTR esp_ipc_isr_asm_call_blocking(esp_ipc_isr_func_t func, void* arg) in esp_ipc_isr_asm_call_blocking() argument 89 esp_ipc_isr_call_and_wait(func, arg, IPC_ISR_WAIT_FOR_END); in esp_ipc_isr_asm_call_blocking() 191 static void IRAM_ATTR esp_ipc_isr_call_and_wait(esp_ipc_isr_func_t func, void* arg, esp_ipc_isr_wai… in esp_ipc_isr_call_and_wait() argument 198 esp_ipc_func = func; in esp_ipc_isr_call_and_wait()
|
/hal_espressif-latest/components/newlib/ |
D | assert.c | 33 void __attribute__((noreturn)) __assert_func(const char *file, int line, const char *func, const ch… in __assert_func() argument 58 if (esp_ptr_in_drom(func)) { in __assert_func() 60 func = addr; in __assert_func() 68 const char *str[] = {ASSERT_STR, func ? func : "\b", " ", file, ":", lbuf, " (", expr, ")"}; in __assert_func()
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | rtc_io_ll.h | 38 static inline void rtcio_ll_function_select(int rtcio_num, rtcio_ll_func_t func) in rtcio_ll_function_select() argument 40 if (func == RTCIO_FUNC_RTC) { in rtcio_ll_function_select() 45 } else if (func == RTCIO_FUNC_DIGITAL) { in rtcio_ll_function_select()
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_panic.c | 13 void __assert_func(const char *file, int line, const char *func, const char *expr) in __assert_func() argument 17 esp_rom_printf("Assert failed in %s, %s:%d (%s)\r\n", func, file, line, expr); in __assert_func()
|
/hal_espressif-latest/components/esp_mm/ |
D | cache_esp32.c | 20 void cache_register_writeback(cache_driver_t *func) in cache_register_writeback() argument 22 s_cache_drv.cache_writeback_psram = func->cache_writeback_psram; in cache_register_writeback()
|
/hal_espressif-latest/components/esp_system/include/ |
D | esp_ipc.h | 53 esp_err_t esp_ipc_call(uint32_t cpu_id, esp_ipc_func_t func, void* arg); 73 esp_err_t esp_ipc_call_blocking(uint32_t cpu_id, esp_ipc_func_t func, void* arg);
|
D | esp_ipc_isr.h | 39 void esp_ipc_isr_asm_call(esp_ipc_isr_func_t func, void* arg); 52 void esp_ipc_isr_asm_call_blocking(esp_ipc_isr_func_t func, void* arg);
|
/hal_espressif-latest/components/soc/esp32s3/ |
D | spi_periph.c | 38 .func = -1, 70 .func = SPI2_FUNC_NUM, 96 .func = -1,
|
/hal_espressif-latest/components/hal/include/hal/ |
D | gpio_hal.h | 195 #define gpio_hal_func_sel(hal, gpio_num, func) gpio_ll_func_sel((hal)->dev, gpio_num, func) argument 368 #define gpio_hal_iomux_out(hal, gpio_num, func, oen_inv) gpio_ll_iomux_out((hal)->dev, gpio_num, fu… argument 517 #define gpio_hal_iomux_func_sel(pin_name, func) gpio_ll_iomux_func_sel(pin_name, func) argument
|
/hal_espressif-latest/components/soc/esp32/ |
D | spi_periph.c | 45 .func = FUNC_SPI, 69 .func = FUNC_SPI, 93 .func = FUNC_SPI,
|
/hal_espressif-latest/components/soc/esp32s2/ |
D | spi_periph.c | 37 .func = SPI_FUNC_NUM, 69 .func = FSPI_FUNC_NUM, 95 .func = -1,
|
/hal_espressif-latest/components/bt/common/osi/include/osi/ |
D | thread.h | 61 bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, ui… 93 struct osi_event *osi_event_create(osi_thread_func_t func, void *context);
|
/hal_espressif-latest/components/soc/esp32c2/ |
D | spi_periph.c | 38 .func = -1, 62 .func = SPI2_FUNC_NUM,
|
/hal_espressif-latest/components/soc/esp32c6/ |
D | spi_periph.c | 38 .func = -1, 62 .func = SPI2_FUNC_NUM,
|
/hal_espressif-latest/components/soc/esp32c3/ |
D | spi_periph.c | 38 .func = -1, 62 .func = SPI2_FUNC_NUM,
|
/hal_espressif-latest/components/soc/esp32h2/ |
D | spi_periph.c | 38 .func = -1, 62 .func = SPI2_FUNC_NUM,
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | gpio_ll.h | 451 static inline void gpio_ll_iomux_func_sel(uint32_t pin_name, uint32_t func) in gpio_ll_iomux_func_sel() argument 457 PIN_FUNC_SELECT(pin_name, func); in gpio_ll_iomux_func_sel() 468 static inline void gpio_ll_func_sel(gpio_dev_t *hw, uint8_t gpio_num, uint32_t func) in gpio_ll_func_sel() argument 474 PIN_FUNC_SELECT(IO_MUX_GPIO0_REG + (gpio_num * 4), func); in gpio_ll_func_sel() 486 static inline void gpio_ll_iomux_out(gpio_dev_t *hw, uint8_t gpio_num, int func, uint32_t oen_inv) in gpio_ll_iomux_out() argument 490 gpio_ll_iomux_func_sel(IO_MUX_GPIO0_REG + (gpio_num * 4), func); in gpio_ll_iomux_out()
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | rtc_io_ll.h | 49 static inline void rtcio_ll_function_select(int rtcio_num, rtcio_ll_func_t func) in rtcio_ll_function_select() argument 51 if (func == RTCIO_FUNC_RTC) { in rtcio_ll_function_select() 56 …_desc[rtcio_num].reg, RTC_IO_TOUCH_PAD1_FUN_SEL_V, RTCIO_LL_PIN_FUNC, rtc_io_desc[rtcio_num].func); in rtcio_ll_function_select() 57 } else if (func == RTCIO_FUNC_DIGITAL) { in rtcio_ll_function_select()
|