| /Kernel-v11.0.1/include/ |
| D | timers.h | 507 #define xTimerStart( xTimer, xTicksToWait ) \ argument 508 …imerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) 550 #define xTimerStop( xTimer, xTicksToWait ) \ argument 551 xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) ) 631 #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) \ argument 632 …TimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) ) 670 #define xTimerDelete( xTimer, xTicksToWait ) \ argument 671 xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) ) 795 #define xTimerReset( xTimer, xTicksToWait ) \ argument 796 …imerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) [all …]
|
| D | queue.h | 345 #define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) \ argument 346 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) 428 #define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) \ argument 429 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) 513 #define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) \ argument 514 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) 688 TickType_t xTicksToWait, 786 TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; 915 TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; 1486 TickType_t xTicksToWait ); [all …]
|
| D | mpu_prototypes.h | 56 TickType_t xTicksToWait; member 65 TickType_t xTicksToWait; member 74 TickType_t xTicksToWait; member 120 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; 124 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; 186 TickType_t xTicksToWait, 190 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; 193 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; 195 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; 200 TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; [all …]
|
| D | message_buffer.h | 376 #define xMessageBufferSend( xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) \ argument 377 xStreamBufferSend( ( xMessageBuffer ), ( pvTxData ), ( xDataLengthBytes ), ( xTicksToWait ) ) 570 #define xMessageBufferReceive( xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) \ argument 571 … xStreamBufferReceive( ( xMessageBuffer ), ( pvRxData ), ( xBufferLengthBytes ), ( xTicksToWait ) )
|
| D | croutine.h | 404 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument 406 *( pxResult ) = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), ( xTicksToWait ) ); \ 498 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument 500 *( pxResult ) = xQueueCRReceive( ( pxQueue ), ( pvBuffer ), ( xTicksToWait ) ); \
|
| D | task.h | 2905 TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; 2906 … xTaskNotifyWait( ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ) \ argument 2907 …FY, ( ulBitsToClearOnEntry ), ( ulBitsToClearOnExit ), ( pulNotificationValue ), ( xTicksToWait ) ) 2908 … uxIndexToWaitOn, ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ) \ argument 2909 … ), ( ulBitsToClearOnEntry ), ( ulBitsToClearOnExit ), ( pulNotificationValue ), ( xTicksToWait ) ) 3175 TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; 3176 #define ulTaskNotifyTake( xClearCountOnExit, xTicksToWait ) \ argument 3177 … ulTaskGenericNotifyTake( ( tskDEFAULT_INDEX_TO_NOTIFY ), ( xClearCountOnExit ), ( xTicksToWait ) ) 3178 #define ulTaskNotifyTakeIndexed( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ) \ argument 3179 ulTaskGenericNotifyTake( ( uxIndexToWaitOn ), ( xClearCountOnExit ), ( xTicksToWait ) ) [all …]
|
| /Kernel-v11.0.1/ |
| D | event_groups.c | 182 TickType_t xTicksToWait ) in xEventGroupSync() argument 189 traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in xEventGroupSync() 195 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xEventGroupSync() 214 xTicksToWait = 0; in xEventGroupSync() 218 if( xTicksToWait != ( TickType_t ) 0 ) in xEventGroupSync() 225 …ts ), ( uxBitsToWaitFor | eventCLEAR_EVENTS_ON_EXIT_BIT | eventWAIT_FOR_ALL_BITS ), xTicksToWait ); in xEventGroupSync() 244 if( xTicksToWait != ( TickType_t ) 0 ) in xEventGroupSync() 310 TickType_t xTicksToWait ) in xEventGroupWaitBits() argument 317 …R_xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicksToWait ); in xEventGroupWaitBits() 326 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xEventGroupWaitBits() [all …]
|
| D | queue.c | 816 TickType_t xTicksToWait ) in xQueueTakeMutexRecursive() argument 821 traceENTER_xQueueTakeMutexRecursive( xMutex, xTicksToWait ); in xQueueTakeMutexRecursive() 837 xReturn = xQueueSemaphoreTake( pxMutex, xTicksToWait ); in xQueueTakeMutexRecursive() 941 TickType_t xTicksToWait, in xQueueGenericSend() argument 948 traceENTER_xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in xQueueGenericSend() 955 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueGenericSend() 1075 if( xTicksToWait == ( TickType_t ) 0 ) in xQueueGenericSend() 1111 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) in xQueueGenericSend() 1116 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); in xQueueGenericSend() 1498 TickType_t xTicksToWait ) in xQueueReceive() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM55_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM85/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM85_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM35P_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM3_MPU/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM4_MPU/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM55/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM33_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM35P/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM23/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 899 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 903 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 997 TickType_t xTicksToWait, 1002 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1081 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1085 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1111 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1115 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1140 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1143 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM23_NTZ/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 899 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 903 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 997 TickType_t xTicksToWait, 1002 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1081 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1085 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1111 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1115 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1140 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1143 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM33/non_secure/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/ |
| D | mpu_wrappers_v2_asm.c | 899 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 903 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 997 TickType_t xTicksToWait, 1002 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1081 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1085 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1111 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1115 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1140 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1143 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/ |
| D | mpu_wrappers_v2_asm.c | 899 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 903 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 997 TickType_t xTicksToWait, 1002 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1081 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1085 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1111 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1115 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1140 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1143 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/ |
| D | mpu_wrappers_v2_asm.c | 871 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 875 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 966 TickType_t xTicksToWait, 971 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1047 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1051 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1076 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1080 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1104 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1107 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
| /Kernel-v11.0.1/portable/Common/ |
| D | mpu_wrappers.c | 968 TickType_t xTicksToWait ) /* FREERTOS_SYSTEM_CALL */ in MPU_xTaskGenericNotifyWait() argument 977 …( uxIndexToWaitOn, ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ); in MPU_xTaskGenericNotifyWait() 985 …( uxIndexToWaitOn, ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ); in MPU_xTaskGenericNotifyWait() 996 TickType_t xTicksToWait ) /* FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 1005 … ulReturn = ulTaskGenericNotifyTake( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ); in MPU_ulTaskGenericNotifyTake() 1013 … ulReturn = ulTaskGenericNotifyTake( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ); in MPU_ulTaskGenericNotifyTake() 1161 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1171 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend() 1179 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend() 1236 TickType_t xTicksToWait ) /* FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument [all …]
|