Searched refs:uxIndexToNotify (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.5.0/components/freertos/include/freertos/ |
D | task.h | 2384 UBaseType_t uxIndexToNotify, 2390 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2391 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2423 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2424 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2544 UBaseType_t uxIndexToNotify, 2551 #define xTaskNotifyIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pxHigherPriori… argument 2552 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL,… 2582 #define xTaskNotifyAndQueryIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPre… argument 2583 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pul… [all …]
|
D | FreeRTOS.h | 704 #define traceTASK_NOTIFY( uxIndexToNotify ) argument 708 #define traceTASK_NOTIFY_FROM_ISR( uxIndexToNotify ) argument 712 #define traceTASK_NOTIFY_GIVE_FROM_ISR( uxIndexToNotify ) argument
|
D | mpu_prototypes.h | 95 UBaseType_t uxIndexToNotify,
|
/hal_espressif-3.5.0/components/freertos/ |
D | tasks.c | 5521 UBaseType_t uxIndexToNotify, in xTaskGenericNotify() argument 5530 configASSERT( uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotify() 5538 *pulPreviousNotificationValue = pxTCB->ulNotifiedValue[ uxIndexToNotify ]; in xTaskGenericNotify() 5541 ucOriginalNotifyState = pxTCB->ucNotifyState[ uxIndexToNotify ]; in xTaskGenericNotify() 5543 pxTCB->ucNotifyState[ uxIndexToNotify ] = taskNOTIFICATION_RECEIVED; in xTaskGenericNotify() 5548 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 5552 ( pxTCB->ulNotifiedValue[ uxIndexToNotify ] )++; in xTaskGenericNotify() 5556 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 5563 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 5584 configASSERT( pxTCB->ulNotifiedValue[ uxIndexToNotify ] == ~0UL ); in xTaskGenericNotify() [all …]
|
/hal_espressif-3.5.0/components/app_trace/sys_view/Sample/OS/ |
D | SEGGER_SYSVIEW_FreeRTOS.h | 217 #define traceTASK_NOTIFY_GIVE_FROM_ISR( uxIndexToNotify ) SEGGER_SYSVIEW_RecordU32x2(ap… argument 224 #define traceTASK_NOTIFY( uxIndexToNotify ) SYSVIEW_RecordU32x4(apiFastID… argument 225 #define traceTASK_NOTIFY_FROM_ISR( uxIndexToNotify ) SYSVIEW_RecordU32x5(apiFastID… argument
|