Home
last modified time | relevance | path

Searched refs:xQueueReceive (Results 1 – 15 of 15) sorted by relevance

/device/soc/esp/esp32/components/esp_lwip/port/
Dsys_arch.c321 ret = xQueueReceive((*mbox)->os_mbox, &(*msg), portMAX_DELAY); in sys_arch_mbox_fetch()
325 ret = xQueueReceive((*mbox)->os_mbox, &(*msg), timeout_ticks); in sys_arch_mbox_fetch()
353 ret = xQueueReceive((*mbox)->os_mbox, &(*msg), 0); in sys_arch_mbox_tryfetch()
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dmpu_wrappers.h94 #define xQueueReceive MPU_xQueueReceive macro
Dqueue.h764 BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PR…
/device/soc/esp/esp32/components/esp_wifi/esp32/
Desp_adapter.c371 return (int32_t)xQueueReceive(queue, item, portMAX_DELAY); in queue_recv_wrapper()
373 return (int32_t)xQueueReceive(queue, item, block_time_tick); in queue_recv_wrapper()
/device/soc/esp/esp32/components/driver/
Dtwai.c573 int res = xQueueReceive(p_twai_obj->tx_queue, &tx_frame, 0); in twai_transmit()
601 if (xQueueReceive(p_twai_obj->rx_queue, &rx_frame, ticks_to_wait) != pdTRUE) { in twai_receive()
Dspi_slave_hd.c487 ret = xQueueReceive(host->tx_ret_queue, &trans, timeout); in get_ret_queue_result()
489 ret = xQueueReceive(host->rx_ret_queue, &trans, timeout); in get_ret_queue_result()
Di2s.c1056 …if (xQueueReceive(p_i2s_obj[i2s_num]->tx->queue, &p_i2s_obj[i2s_num]->tx->curr_ptr, ticks_to_wait)… in i2s_write()
1144 …if (xQueueReceive(p_i2s_obj[i2s_num]->tx->queue, &p_i2s_obj[i2s_num]->tx->curr_ptr, ticks_to_wait)… in i2s_write_expand()
1186 …if (xQueueReceive(p_i2s_obj[i2s_num]->rx->queue, &p_i2s_obj[i2s_num]->rx->curr_ptr, ticks_to_wait)… in i2s_read()
Dspi_slave.c308 r = xQueueReceive(spihost[host]->ret_queue, (void *)trans_desc, ticks_to_wait); in spi_slave_get_trans_result()
Dsdmmc_host.c436 int ret = xQueueReceive(s_event_queue, out_event, tick_count); in sdmmc_host_wait_for_event()
Dsdio_slave.c583 portBASE_TYPE err = xQueueReceive(context.ret_queue, &arg, wait); in sdio_slave_send_get_finished()
Dspi_master.c833 r=xQueueReceive(handle->ret_queue, (void*)&trans_buf, ticks_to_wait); in spi_device_get_trans_result()
Di2c.c1230 portBASE_TYPE evt_res = xQueueReceive(p_i2c->cmd_evt_queue, &evt, wait_time); in i2c_master_cmd_begin()
/device/soc/esp/esp32/components/esp_event/
Desp_event.c557 while(xQueueReceive(loop->queue, &post, ticks_to_run) == pdTRUE) { in esp_event_loop_run()
664 while(xQueueReceive(loop->queue, &post, 0) == pdTRUE) { in esp_event_loop_delete()
/device/soc/esp/esp32/components/bt/controller/esp32/
Dbt.c764 return (int32_t)xQueueReceive(queue, item, portMAX_DELAY); in queue_recv_wrapper()
766 return (int32_t)xQueueReceive(queue, item, block_time_ms / portTICK_PERIOD_MS); in queue_recv_wrapper()
/device/soc/esp/esp32/components/osal/
Dqueue.c1062 BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) in xQueueReceive() function