Lines Matching refs:awoken

286     BaseType_t awoken = pdFALSE;  in spi_slave_hd_intr_segment()  local
289 awoken |= intr_check_clear_callback(host, SPI_EV_BUF_TX, callback->cb_buffer_tx); in spi_slave_hd_intr_segment()
290 awoken |= intr_check_clear_callback(host, SPI_EV_BUF_RX, callback->cb_buffer_rx); in spi_slave_hd_intr_segment()
291 awoken |= intr_check_clear_callback(host, SPI_EV_CMD9, callback->cb_cmd9); in spi_slave_hd_intr_segment()
292 awoken |= intr_check_clear_callback(host, SPI_EV_CMDA, callback->cb_cmdA); in spi_slave_hd_intr_segment()
315 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
318 ret = xQueueSendFromISR(host->tx_ret_queue, &host->tx_desc, &awoken); in spi_slave_hd_intr_segment()
334 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
337 ret = xQueueSendFromISR(host->rx_ret_queue, &host->rx_desc, &awoken); in spi_slave_hd_intr_segment()
347 ret = xQueueReceiveFromISR(host->tx_trans_queue, &host->tx_desc, &awoken); in spi_slave_hd_intr_segment()
358 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
363 ret = xQueueReceiveFromISR(host->rx_trans_queue, &host->rx_desc, &awoken); in spi_slave_hd_intr_segment()
374 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
388 if (awoken == pdTRUE) portYIELD_FROM_ISR(); in spi_slave_hd_intr_segment()
396 BaseType_t awoken = pdFALSE; in spi_slave_hd_append_tx_isr() local
415 awoken |= cb_awoken; in spi_slave_hd_append_tx_isr()
419 ret = xQueueSendFromISR(host->tx_ret_queue, &trans_desc, &awoken); in spi_slave_hd_append_tx_isr()
422 ret = xSemaphoreGiveFromISR(host->tx_cnting_sem, &awoken); in spi_slave_hd_append_tx_isr()
426 if (awoken==pdTRUE) portYIELD_FROM_ISR(); in spi_slave_hd_append_tx_isr()
434 BaseType_t awoken = pdFALSE; in spi_slave_hd_append_rx_isr() local
455 awoken |= cb_awoken; in spi_slave_hd_append_rx_isr()
459 ret = xQueueSendFromISR(host->rx_ret_queue, &trans_desc, &awoken); in spi_slave_hd_append_rx_isr()
462 ret = xSemaphoreGiveFromISR(host->rx_cnting_sem, &awoken); in spi_slave_hd_append_rx_isr()
466 if (awoken==pdTRUE) portYIELD_FROM_ISR(); in spi_slave_hd_append_rx_isr()