Lines Matching refs:uxIndexToWaitOn
7614 uint32_t ulTaskGenericNotifyTake( UBaseType_t uxIndexToWaitOn, in ulTaskGenericNotifyTake() argument
7621 traceENTER_ulTaskGenericNotifyTake( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ); in ulTaskGenericNotifyTake()
7623 configASSERT( uxIndexToWaitOn < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in ulTaskGenericNotifyTake()
7636 if( pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ] == 0U ) in ulTaskGenericNotifyTake()
7639 pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] = taskWAITING_NOTIFICATION; in ulTaskGenericNotifyTake()
7662 traceTASK_NOTIFY_TAKE_BLOCK( uxIndexToWaitOn ); in ulTaskGenericNotifyTake()
7684 traceTASK_NOTIFY_TAKE( uxIndexToWaitOn ); in ulTaskGenericNotifyTake()
7685 ulReturn = pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ]; in ulTaskGenericNotifyTake()
7691 pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ] = ( uint32_t ) 0U; in ulTaskGenericNotifyTake()
7695 pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ] = ulReturn - ( uint32_t ) 1; in ulTaskGenericNotifyTake()
7703 pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] = taskNOT_WAITING_NOTIFICATION; in ulTaskGenericNotifyTake()
7717 BaseType_t xTaskGenericNotifyWait( UBaseType_t uxIndexToWaitOn, in xTaskGenericNotifyWait() argument
7725 …traceENTER_xTaskGenericNotifyWait( uxIndexToWaitOn, ulBitsToClearOnEntry, ulBitsToClearOnExit, pul… in xTaskGenericNotifyWait()
7727 configASSERT( uxIndexToWaitOn < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotifyWait()
7739 if( pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] != taskNOTIFICATION_RECEIVED ) in xTaskGenericNotifyWait()
7744 pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ] &= ~ulBitsToClearOnEntry; in xTaskGenericNotifyWait()
7747 pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] = taskWAITING_NOTIFICATION; in xTaskGenericNotifyWait()
7770 traceTASK_NOTIFY_WAIT_BLOCK( uxIndexToWaitOn ); in xTaskGenericNotifyWait()
7792 traceTASK_NOTIFY_WAIT( uxIndexToWaitOn ); in xTaskGenericNotifyWait()
7798 *pulNotificationValue = pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ]; in xTaskGenericNotifyWait()
7805 if( pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] != taskNOTIFICATION_RECEIVED ) in xTaskGenericNotifyWait()
7814 pxCurrentTCB->ulNotifiedValue[ uxIndexToWaitOn ] &= ~ulBitsToClearOnExit; in xTaskGenericNotifyWait()
7818 pxCurrentTCB->ucNotifyState[ uxIndexToWaitOn ] = taskNOT_WAITING_NOTIFICATION; in xTaskGenericNotifyWait()