Searched refs:uxIndexToNotify (Results 1 – 6 of 6) sorted by relevance
/Kernel-v10.6.2/include/ |
HD | task.h | 2157 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 …]
|
HD | mpu_prototypes.h | 44 UBaseType_t uxIndexToNotify; member 112 UBaseType_t uxIndexToNotify, 172 UBaseType_t uxIndexToNotify, 178 UBaseType_t uxIndexToNotify,
|
HD | FreeRTOS.h | 767 #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/ |
HD | tasks.c | 4918 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/ |
HD | mpu_wrappers_v2.c | 1297 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()
|
HD | mpu_wrappers.c | 959 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()
|