Home
last modified time | relevance | path

Searched refs:uxIndexToNotify (Results 1 – 6 of 6) sorted by relevance

/Kernel-v11.0.1/include/
Dtask.h2606 UBaseType_t uxIndexToNotify,
2612 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument
2613 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL )
2641 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument
2642 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou…
2758 UBaseType_t uxIndexToNotify,
2765 #define xTaskNotifyIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pxHigherPriori… argument
2766 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL,…
2792 #define xTaskNotifyAndQueryIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPre… argument
2793 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pul…
[all …]
Dmpu_prototypes.h44 UBaseType_t uxIndexToNotify; member
111 UBaseType_t uxIndexToNotify,
174 UBaseType_t uxIndexToNotify,
180 UBaseType_t uxIndexToNotify,
DFreeRTOS.h913 #define traceTASK_NOTIFY( uxIndexToNotify ) argument
917 #define traceTASK_NOTIFY_FROM_ISR( uxIndexToNotify ) argument
921 #define traceTASK_NOTIFY_GIVE_FROM_ISR( uxIndexToNotify ) argument
2273 …#define traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPrevio… argument
2281 …#define traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pu… argument
2289 …#define traceENTER_vTaskGenericNotifyGiveFromISR( xTaskToNotify, uxIndexToNotify, pxHigherPriority… argument
/Kernel-v11.0.1/
Dtasks.c7900 UBaseType_t uxIndexToNotify, in xTaskGenericNotify() argument
7909 …traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotifi… in xTaskGenericNotify()
7911 configASSERT( uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotify()
7919 *pulPreviousNotificationValue = pxTCB->ulNotifiedValue[ uxIndexToNotify ]; in xTaskGenericNotify()
7922 ucOriginalNotifyState = pxTCB->ucNotifyState[ uxIndexToNotify ]; in xTaskGenericNotify()
7924 pxTCB->ucNotifyState[ uxIndexToNotify ] = taskNOTIFICATION_RECEIVED; in xTaskGenericNotify()
7929 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify()
7933 ( pxTCB->ulNotifiedValue[ uxIndexToNotify ] )++; in xTaskGenericNotify()
7937 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
7944 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
[all …]
/Kernel-v11.0.1/portable/Common/
Dmpu_wrappers_v2.c1266 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotify() argument
1275 xParams.uxIndexToNotify = uxIndexToNotify; in MPU_xTaskGenericNotify()
1305 if( ( pxParams->uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ) && in MPU_xTaskGenericNotifyImpl()
1335 pxParams->uxIndexToNotify, in MPU_xTaskGenericNotifyImpl()
2109 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotifyFromISR() argument
2127 …xReturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPr… in MPU_xTaskGenericNotifyFromISR()
2140 UBaseType_t uxIndexToNotify, in MPU_vTaskGenericNotifyGiveFromISR() argument
2154 … vTaskGenericNotifyGiveFromISR( xInternalTaskHandle, uxIndexToNotify, pxHigherPriorityTaskWoken ); in MPU_vTaskGenericNotifyGiveFromISR()
Dmpu_wrappers.c935 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotify() argument
947 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()
955 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()