Home
last modified time | relevance | path

Searched refs:xTaskWoken (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/usb/test/hcd/
Dtest_hcd_common.c60 BaseType_t xTaskWoken = pdFALSE; in port_callback() local
61 xQueueSendFromISR(port_evt_queue, &msg, &xTaskWoken); in port_callback()
62 return (xTaskWoken == pdTRUE); in port_callback()
83 BaseType_t xTaskWoken = pdFALSE; in pipe_callback() local
84 xQueueSendFromISR(pipe_evt_queue, &msg, &xTaskWoken); in pipe_callback()
85 return (xTaskWoken == pdTRUE); in pipe_callback()
/hal_espressif-3.6.0/components/driver/
Dusb_serial_jtag.c55 portBASE_TYPE xTaskWoken = 0; in usb_serial_jtag_isr_handler_default() local
72 … vRingbufferReturnItemFromISR(p_usb_serial_jtag_obj->tx_ring_buf, queued_buff, &xTaskWoken); in usb_serial_jtag_isr_handler_default()
85 …(p_usb_serial_jtag_obj->rx_ring_buf, p_usb_serial_jtag_obj->rx_data_buf, rx_fifo_len, &xTaskWoken); in usb_serial_jtag_isr_handler_default()
88 if (xTaskWoken == pdTRUE) { in usb_serial_jtag_isr_handler_default()
/hal_espressif-3.6.0/components/usb/
Dusb_host.c192 BaseType_t xTaskWoken = pdFALSE; in _unblock_client() local
193 xSemaphoreGiveFromISR(client_obj->constant.event_sem, &xTaskWoken); in _unblock_client()
194 yield = (xTaskWoken == pdTRUE); in _unblock_client()
218 BaseType_t xTaskWoken = pdFALSE; in _unblock_lib() local
219 xSemaphoreGiveFromISR(p_host_lib_obj->constant.event_sem, &xTaskWoken); in _unblock_lib()
220 yield = (xTaskWoken == pdTRUE); in _unblock_lib()
Dhcd.c713 BaseType_t xTaskWoken = pdFALSE; in _internal_port_event_notify_from_isr() local
715 vTaskNotifyGiveFromISR(task_to_unblock, &xTaskWoken); in _internal_port_event_notify_from_isr()
716 return (xTaskWoken == pdTRUE); in _internal_port_event_notify_from_isr()
744 BaseType_t xTaskWoken = pdFALSE; in _internal_pipe_event_notify() local
747 vTaskNotifyGiveFromISR(task_to_unblock, &xTaskWoken); in _internal_pipe_event_notify()
748 ret = (xTaskWoken == pdTRUE); in _internal_pipe_event_notify()