/Kernel-v11.1.0/include/ |
D | task.h | 2607 UBaseType_t uxIndexToNotify, 2613 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2614 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2642 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2643 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2759 UBaseType_t uxIndexToNotify, 2766 #define xTaskNotifyIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pxHigherPriori… argument 2767 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL,… 2793 #define xTaskNotifyAndQueryIndexedFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPre… argument 2794 …xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pul… [all …]
|
D | mpu_prototypes.h | 44 UBaseType_t uxIndexToNotify; member 111 UBaseType_t uxIndexToNotify, 174 UBaseType_t uxIndexToNotify, 180 UBaseType_t uxIndexToNotify,
|
D | FreeRTOS.h | 961 #define traceTASK_NOTIFY( uxIndexToNotify ) argument 965 #define traceTASK_NOTIFY_FROM_ISR( uxIndexToNotify ) argument 969 #define traceTASK_NOTIFY_GIVE_FROM_ISR( uxIndexToNotify ) argument 2325 …#define traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPrevio… argument 2333 …#define traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pu… argument 2341 …#define traceENTER_vTaskGenericNotifyGiveFromISR( xTaskToNotify, uxIndexToNotify, pxHigherPriority… argument
|
/Kernel-v11.1.0/ |
D | tasks.c | 7833 UBaseType_t uxIndexToNotify, in xTaskGenericNotify() argument 7842 …traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotifi… in xTaskGenericNotify() 7844 configASSERT( uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotify() 7852 *pulPreviousNotificationValue = pxTCB->ulNotifiedValue[ uxIndexToNotify ]; in xTaskGenericNotify() 7855 ucOriginalNotifyState = pxTCB->ucNotifyState[ uxIndexToNotify ]; in xTaskGenericNotify() 7857 pxTCB->ucNotifyState[ uxIndexToNotify ] = taskNOTIFICATION_RECEIVED; in xTaskGenericNotify() 7862 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 7866 ( pxTCB->ulNotifiedValue[ uxIndexToNotify ] )++; in xTaskGenericNotify() 7870 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 7877 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() [all …]
|
/Kernel-v11.1.0/portable/Common/ |
D | mpu_wrappers_v2.c | 1271 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotify() argument 1280 xParams.uxIndexToNotify = uxIndexToNotify; in MPU_xTaskGenericNotify() 1310 if( ( pxParams->uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ) && in MPU_xTaskGenericNotifyImpl() 1340 pxParams->uxIndexToNotify, in MPU_xTaskGenericNotifyImpl() 2114 UBaseType_t uxIndexToNotify, in MPU_xTaskGenericNotifyFromISR() argument 2132 …xReturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPr… in MPU_xTaskGenericNotifyFromISR() 2145 UBaseType_t uxIndexToNotify, in MPU_vTaskGenericNotifyGiveFromISR() argument 2159 … vTaskGenericNotifyGiveFromISR( xInternalTaskHandle, uxIndexToNotify, pxHigherPriorityTaskWoken ); in MPU_vTaskGenericNotifyGiveFromISR()
|
D | mpu_wrappers.c | 935 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()
|