Lines Matching refs:uxIndexToWait
4759 uint32_t ulTaskGenericNotifyTake( UBaseType_t uxIndexToWait, in ulTaskGenericNotifyTake() argument
4765 configASSERT( uxIndexToWait < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in ulTaskGenericNotifyTake()
4770 if( pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ] == 0UL ) in ulTaskGenericNotifyTake()
4773 pxCurrentTCB->ucNotifyState[ uxIndexToWait ] = taskWAITING_NOTIFICATION; in ulTaskGenericNotifyTake()
4778 traceTASK_NOTIFY_TAKE_BLOCK( uxIndexToWait ); in ulTaskGenericNotifyTake()
4800 traceTASK_NOTIFY_TAKE( uxIndexToWait ); in ulTaskGenericNotifyTake()
4801 ulReturn = pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ]; in ulTaskGenericNotifyTake()
4807 pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ] = 0UL; in ulTaskGenericNotifyTake()
4811 pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ] = ulReturn - ( uint32_t ) 1; in ulTaskGenericNotifyTake()
4819 pxCurrentTCB->ucNotifyState[ uxIndexToWait ] = taskNOT_WAITING_NOTIFICATION; in ulTaskGenericNotifyTake()
4831 BaseType_t xTaskGenericNotifyWait( UBaseType_t uxIndexToWait, in xTaskGenericNotifyWait() argument
4839 configASSERT( uxIndexToWait < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotifyWait()
4844 if( pxCurrentTCB->ucNotifyState[ uxIndexToWait ] != taskNOTIFICATION_RECEIVED ) in xTaskGenericNotifyWait()
4849 pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ] &= ~ulBitsToClearOnEntry; in xTaskGenericNotifyWait()
4852 pxCurrentTCB->ucNotifyState[ uxIndexToWait ] = taskWAITING_NOTIFICATION; in xTaskGenericNotifyWait()
4857 traceTASK_NOTIFY_WAIT_BLOCK( uxIndexToWait ); in xTaskGenericNotifyWait()
4879 traceTASK_NOTIFY_WAIT( uxIndexToWait ); in xTaskGenericNotifyWait()
4885 *pulNotificationValue = pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ]; in xTaskGenericNotifyWait()
4892 if( pxCurrentTCB->ucNotifyState[ uxIndexToWait ] != taskNOTIFICATION_RECEIVED ) in xTaskGenericNotifyWait()
4901 pxCurrentTCB->ulNotifiedValue[ uxIndexToWait ] &= ~ulBitsToClearOnExit; in xTaskGenericNotifyWait()
4905 pxCurrentTCB->ucNotifyState[ uxIndexToWait ] = taskNOT_WAITING_NOTIFICATION; in xTaskGenericNotifyWait()