| /Kernel-v11.0.1/ |
| D | event_groups.c | 73 const EventBits_t uxBitsToWaitFor, 181 const EventBits_t uxBitsToWaitFor, in xEventGroupSync() argument 189 traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in xEventGroupSync() 191 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupSync() 192 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupSync() 205 if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync() 212 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync() 220 traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); in xEventGroupSync() 225 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_… in xEventGroupSync() 272 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync() [all …]
|
| /Kernel-v11.0.1/include/ |
| D | event_groups.h | 320 const EventBits_t uxBitsToWaitFor, 733 const EventBits_t uxBitsToWaitFor,
|
| D | mpu_prototypes.h | 71 EventBits_t uxBitsToWaitFor; member 304 const EventBits_t uxBitsToWaitFor, 315 const EventBits_t uxBitsToWaitFor,
|
| D | FreeRTOS.h | 849 #define traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ) argument 853 …#define traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ) … argument 857 #define traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ) argument 861 …#define traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ) ( void… argument 1005 #define traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ) argument 1013 …#define traceENTER_xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBit… argument
|
| /Kernel-v11.0.1/portable/Common/ |
| D | mpu_wrappers.c | 2008 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupWaitBits() argument 2020 …xReturn = xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicks… in MPU_xEventGroupWaitBits() 2028 …xReturn = xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicks… in MPU_xEventGroupWaitBits() 2087 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument 2097 xReturn = xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in MPU_xEventGroupSync() 2105 xReturn = xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in MPU_xEventGroupSync()
|
| D | mpu_wrappers_v2.c | 3871 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupWaitBits() argument 3880 xParams.uxBitsToWaitFor = uxBitsToWaitFor; in MPU_xEventGroupWaitBits() 3909 if( ( ( pxParams->uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ) && in MPU_xEventGroupWaitBitsImpl() 3910 ( pxParams->uxBitsToWaitFor != 0 ) in MPU_xEventGroupWaitBitsImpl() 3929 pxParams->uxBitsToWaitFor, in MPU_xEventGroupWaitBitsImpl() 4015 const EventBits_t uxBitsToWaitFor, 4020 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSyncImpl() argument 4028 if( ( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ) && in MPU_xEventGroupSyncImpl() 4029 ( uxBitsToWaitFor != 0 ) in MPU_xEventGroupSyncImpl() 4047 …xReturn = xEventGroupSync( xInternalEventGroupHandle, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in MPU_xEventGroupSyncImpl()
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM55_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM85/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM85_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM35P_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM3_MPU/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM4_MPU/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM55/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM33_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM35P/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM23/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1833 const EventBits_t uxBitsToWaitFor, 1838 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM23_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1833 const EventBits_t uxBitsToWaitFor, 1838 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM33/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/ |
| D | mpu_wrappers_v2_asm.c | 1833 const EventBits_t uxBitsToWaitFor, 1838 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/ |
| D | mpu_wrappers_v2_asm.c | 1833 const EventBits_t uxBitsToWaitFor, 1838 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/ |
| D | mpu_wrappers_v2_asm.c | 1774 const EventBits_t uxBitsToWaitFor, 1779 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|
| /Kernel-v11.0.1/portable/RVDS/ARM_CM4_MPU/ |
| D | mpu_wrappers_v2_asm.c | 1479 const EventBits_t uxBitsToWaitFor, 1484 const EventBits_t uxBitsToWaitFor, in MPU_xEventGroupSync() argument
|