/Kernel-v11.1.0/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 | 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 | message_buffer.h | 387 #define xMessageBufferSend( xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) \ argument 388 xStreamBufferSend( ( xMessageBuffer ), ( pvTxData ), ( xDataLengthBytes ), ( xTicksToWait ) ) 587 #define xMessageBufferReceive( xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) \ argument 588 … xStreamBufferReceive( ( xMessageBuffer ), ( pvRxData ), ( xBufferLengthBytes ), ( xTicksToWait ) )
|
/Kernel-v11.1.0/ |
D | event_groups.c | 188 TickType_t xTicksToWait ) in xEventGroupSync() argument 195 traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in xEventGroupSync() 201 …figASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); in xEventGroupSync() 220 xTicksToWait = 0; in xEventGroupSync() 224 if( xTicksToWait != ( TickType_t ) 0 ) in xEventGroupSync() 231 …ts ), ( uxBitsToWaitFor | eventCLEAR_EVENTS_ON_EXIT_BIT | eventWAIT_FOR_ALL_BITS ), xTicksToWait ); in xEventGroupSync() 250 if( xTicksToWait != ( TickType_t ) 0 ) in xEventGroupSync() 316 TickType_t xTicksToWait ) in xEventGroupWaitBits() argument 323 …R_xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicksToWait ); in xEventGroupWaitBits() 332 …figASSERT( !( ( 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() 1504 TickType_t xTicksToWait ) in xQueueReceive() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM85/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM55/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM55_NTZ/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM0/ |
D | mpu_wrappers_v2_asm.c | 927 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 931 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 1028 TickType_t xTicksToWait, 1033 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1115 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1119 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1146 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1150 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1176 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1179 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM85_NTZ/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM23/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.1.0/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_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.1.0/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM23_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.1.0/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/ |
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.1.0/portable/GCC/ARM_CM35P_NTZ/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM33/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM4_MPU/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM3_MPU/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM33_NTZ/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/portable/GCC/ARM_CM35P/non_secure/ |
D | mpu_wrappers_v2_asm.c | 843 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 847 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_ulTaskGenericNotifyTake() argument 935 TickType_t xTicksToWait, 940 TickType_t xTicksToWait, in MPU_xQueueGenericSend() argument 1013 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1017 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueReceive() argument 1041 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1045 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueuePeek() argument 1068 … TickType_t xTicksToWait ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL; 1071 … TickType_t xTicksToWait ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */ in MPU_xQueueSemaphoreTake() argument [all …]
|
/Kernel-v11.1.0/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 …]
|