Home
last modified time | relevance | path

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

/Kernel-v10.6.2/include/
HDtask.h2157 UBaseType_t uxIndexToNotify,
2163 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument
2164 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL )
2192 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument
2193 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou…
2309 UBaseType_t uxIndexToNotify,
2316 #define xTaskNotifyIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pxHigherPriori… argument
2317 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL,…
2343 #define xTaskNotifyAndQueryIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPre… argument
2344 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pul…
[all …]
HDmpu_prototypes.h44 UBaseType_t uxIndexToNotify; member
112 UBaseType_t uxIndexToNotify,
172 UBaseType_t uxIndexToNotify,
178 UBaseType_t uxIndexToNotify,
HDFreeRTOS.h767 #define traceTASK_NOTIFY( uxIndexToNotify ) argument
771 #define traceTASK_NOTIFY_FROM_ISR( uxIndexToNotify ) argument
775 #define traceTASK_NOTIFY_GIVE_FROM_ISR( uxIndexToNotify ) argument
/Kernel-v10.6.2/
HDtasks.c4918 UBaseType_t uxIndexToNotify, in xTaskGenericNotify() argument
4927 configASSERT( uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotify()
4935 *pulPreviousNotificationValue = pxTCB->ulNotifiedValue[ uxIndexToNotify ]; in xTaskGenericNotify()
4938 ucOriginalNotifyState = pxTCB->ucNotifyState[ uxIndexToNotify ]; in xTaskGenericNotify()
4940 pxTCB->ucNotifyState[ uxIndexToNotify ] = taskNOTIFICATION_RECEIVED; in xTaskGenericNotify()
4945 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify()
4949 ( pxTCB->ulNotifiedValue[ uxIndexToNotify ] )++; in xTaskGenericNotify()
4953 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
4960 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
4986 traceTASK_NOTIFY( uxIndexToNotify ); in xTaskGenericNotify()
[all …]
/Kernel-v10.6.2/portable/Common/
HDmpu_wrappers_v2.c1297 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotify() argument
1306 xParams.uxIndexToNotify = uxIndexToNotify; in MPU_xTaskGenericNotify()
1336 if( ( pxParams->uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ) && in MPU_xTaskGenericNotifyImpl()
1366 pxParams->uxIndexToNotify, in MPU_xTaskGenericNotifyImpl()
2045 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotifyFromISR() argument
2063 …xReturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPr… in MPU_xTaskGenericNotifyFromISR()
2076 UBaseType_t uxIndexToNotify, in MPU_vTaskGenericNotifyGiveFromISR() argument
2090 … vTaskGenericNotifyGiveFromISR( xInternalTaskHandle, uxIndexToNotify, pxHigherPriorityTaskWoken ); in MPU_vTaskGenericNotifyGiveFromISR()
HDmpu_wrappers.c959 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotify() argument
971 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()
979 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()