Lines Matching refs:ev
762 osa_event_flags_t ev = 0;
767 … OSA_EventWait((osa_event_handle_t)ctrl->event, osaEventFlagsAll_c, 0U, osaWaitForever_c, &ev))
769 if (ev & SDU_CMD_RECEIVED)
772 if (ev & SDU_DATA_RECEIVED)
805 osa_event_flags_t ev = 0; in SDU_RecvTask() local
810 … OSA_EventWait((osa_event_handle_t)ctrl->event, osaEventFlagsAll_c, 0U, osaWaitForever_c, &ev)) in SDU_RecvTask()
812 if ((ev & SDU_CMD_RECEIVED) != 0U) in SDU_RecvTask()
817 if ((ev & SDU_DATA_RECEIVED) != 0U) in SDU_RecvTask()
1407 osa_event_flags_t ev = 0; in SDU_RecvCmd() local
1413 …= OSA_EventWait((osa_event_handle_t)(ctrl_sdu.event), SDU_CMD_RECEIVED, 0U, osaWaitForever_c, &ev); in SDU_RecvCmd()
1417 if ((ev & SDU_CMD_RECEIVED) != 0U) in SDU_RecvCmd()
1428 sdu_e("%s: wrong ev 0x%x!\r\n", __FUNCTION__, ev); in SDU_RecvCmd()
1477 osa_event_flags_t ev = 0; in SDU_RecvData() local
1484 … OSA_EventWait((osa_event_handle_t)(ctrl_sdu.event), SDU_DATA_RECEIVED, 0U, osaWaitForever_c, &ev); in SDU_RecvData()
1488 if ((ev & SDU_DATA_RECEIVED) != 0U) in SDU_RecvData()
1511 sdu_e("%s: wrong ev 0x%x!\r\n", __FUNCTION__, ev); in SDU_RecvData()