| /Kernel-v11.0.1/ |
| D | event_groups.c | 115 pxEventBits->ucStaticallyAllocated = pdTRUE; in xEventGroupCreateStatic() 238 xTimeoutOccurred = pdTRUE; in xEventGroupSync() 283 xTimeoutOccurred = pdTRUE; in xEventGroupSync() 359 xTimeoutOccurred = pdTRUE; in xEventGroupWaitBits() 442 xTimeoutOccurred = pdTRUE; in xEventGroupWaitBits() 583 xMatchFound = pdTRUE; in xEventGroupSetBits() 593 xMatchFound = pdTRUE; in xEventGroupSetBits() 703 if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdTRUE ) in xEventGroupGetStaticBuffer() 709 xReturn = pdTRUE; in xEventGroupGetStaticBuffer() 723 xReturn = pdTRUE; in xEventGroupGetStaticBuffer() [all …]
|
| D | tasks.c | 302 …NING( pxTCB ) ( ( ( pxTCB ) == pxCurrentTCB ) ? ( pdTRUE ) : ( pdFALSE ) ) 303 …NING_OR_SCHEDULED_TO_YIELD( pxTCB ) ( ( ( pxTCB ) == pxCurrentTCB ) ? ( pdTRUE ) : ( pdFALSE ) ) 305 … ( ( pxTCB )->xTaskRunState < ( BaseType_t ) configNUMBER_OF_CORES ) ) ? ( pdTRUE ) : ( pdFALSE ) ) 306 …ELD( pxTCB ) ( ( ( pxTCB )->xTaskRunState != taskTASK_NOT_RUNNING ) ? ( pdTRUE ) : ( pdFALSE ) ) 331 xYieldPendings[ ( xCoreID ) ] = pdTRUE; \ 966 configASSERT( ( xYieldPendings[ portGET_CORE_ID() ] == pdTRUE ) || in prvYieldForTask() 980 BaseType_t xDecrementTopPriority = pdTRUE; in prvSelectHighestPriorityTask() 990 configASSERT( xSchedulerRunning == pdTRUE ); in prvSelectHighestPriorityTask() 1003 &pxCurrentTCBs[ xCoreID ]->xStateListItem ) == pdTRUE ) in prvSelectHighestPriorityTask() 1069 xTaskScheduled = pdTRUE; in prvSelectHighestPriorityTask() [all …]
|
| D | queue.c | 424 pxNewQueue->ucStaticallyAllocated = pdTRUE; in xQueueGenericCreateStatic() 461 if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdTRUE ) in xQueueGenericGetStaticBuffers() 472 xReturn = pdTRUE; in xQueueGenericGetStaticBuffers() 488 xReturn = pdTRUE; in xQueueGenericGetStaticBuffers() 594 ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); in prvInitialiseNewQueue() 1093 xEntryTimeSet = pdTRUE; in xQueueGenericSend() 1231 *pxHigherPriorityTaskWoken = pdTRUE; in xQueueGenericSendFromISR() 1253 *pxHigherPriorityTaskWoken = pdTRUE; in xQueueGenericSendFromISR() 1281 *pxHigherPriorityTaskWoken = pdTRUE; in xQueueGenericSendFromISR() 1404 *pxHigherPriorityTaskWoken = pdTRUE; in xQueueGiveFromISR() [all …]
|
| /Kernel-v11.0.1/portable/MSVC-MingW/ |
| D | port.c | 163 while( xPortRunning == pdTRUE ) in prvSimulatedPeripheralTimer() 180 if( xPortRunning == pdTRUE ) in prvSimulatedPeripheralTimer() 349 xPortRunning = pdTRUE; in xPortStartScheduler() 365 return pdTRUE; in prvProcessYieldInterrupt() 401 while( xPortRunning == pdTRUE ) in prvProcessSimulatedInterrupts() 416 xInsideInterrupt = pdTRUE; in prvProcessSimulatedInterrupts() 564 *pxPendYield = pdTRUE; in vPortCloseRunningThread() 649 if( xPortRunning == pdTRUE ) in vPortEnterCritical() 666 lMutexNeedsReleasing = pdTRUE; in vPortExitCritical() 710 if( lMutexNeedsReleasing == pdTRUE ) in vPortExitCritical()
|
| /Kernel-v11.0.1/include/ |
| D | message_buffer.h | 159 xStreamBufferGenericCreate( ( xBufferSizeBytes ), ( size_t ) 0, pdTRUE, NULL, NULL ) 163 …xStreamBufferGenericCreate( ( xBufferSizeBytes ), ( size_t ) 0, pdTRUE, ( pxSendCompletedCallback … 241 …xStreamBufferGenericCreateStatic( ( xBufferSizeBytes ), 0, pdTRUE, ( pucMessageBufferStorageArea )… 245 …xStreamBufferGenericCreateStatic( ( xBufferSizeBytes ), 0, pdTRUE, ( pucMessageBufferStorageArea )…
|
| D | projdefs.h | 53 #define pdTRUE ( ( BaseType_t ) 1 ) macro 59 #define pdPASS ( pdTRUE )
|
| /Kernel-v11.0.1/examples/coverity/ |
| D | CMakeLists.txt | 8 # Coverity incorrectly infers the type of pdTRUE and pdFALSE as boolean because 10 # mismatch. Replace pdTRUE with pdPASS and pdFALSE with pdFAIL to avoid these 12 # fixes the issue of incorrectly inferring the type of pdTRUE and pdFALSE as 15 … COMMAND sed -i -b -e 's/pdFALSE/pdFAIL/g' -e 's/pdTRUE/pdPASS/g' ${FREERTOS_KERNEL_SOURCE}
|
| D | README.md | 7 Coverity version 2022.6.1 incorrectly infers the type of `pdTRUE` and `pdFALSE` 9 about type mismatch. We replace `pdTRUE` with `pdPASS` and `pdFALSE` with 12 `pdTRUE` and `pdFALSE` as boolean.
|
| /Kernel-v11.0.1/portable/Common/ |
| D | mpu_wrappers_v2.c | 463 if( xIsPreviousWakeTimeAccessible == pdTRUE ) in MPU_xTaskDelayUntilImpl() 492 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_xTaskAbortDelayImpl() 544 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_uxTaskPriorityGetImpl() 579 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_eTaskGetStateImpl() 617 if( xIsTaskStatusWriteable == pdTRUE ) in MPU_vTaskGetInfoImpl() 631 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_vTaskGetInfoImpl() 683 …xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED ) || ( portIS_TASK_PRIVILEGED() == pdTRUE ) ) in MPU_vTaskSuspendImpl() 685 if( portIS_TASK_PRIVILEGED() == pdTRUE ) in MPU_vTaskSuspendImpl() 694 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_vTaskSuspendImpl() 727 if( xCallingTaskIsAuthorizedToAccessTask == pdTRUE ) in MPU_vTaskResumeImpl() [all …]
|
| /Kernel-v11.0.1/portable/GCC/ARM_CA9/ |
| D | port.c | 301 *pxTopOfStack = pdTRUE; in pxPortInitialiseStack() 302 ulPortTaskHasFPUContext = pdTRUE; in pxPortInitialiseStack() 475 ulPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 492 ulPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 521 ulReturn = pdTRUE; in ulPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/GCC/ARM_CR5/ |
| D | port.c | 365 *pxTopOfStack = pdTRUE; in pxPortInitialiseStack() 366 ulPortTaskHasFPUContext = pdTRUE; in pxPortInitialiseStack() 589 ulPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 608 ulPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 636 ulReturn = pdTRUE; in ulPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/IAR/ARM_CA9/ |
| D | port.c | 353 ulPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 368 ulPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 393 ulReturn = pdTRUE; in ulPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/GCC/Arm_AARCH64_SRE/ |
| D | port.c | 379 ullPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 391 ullPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 421 ulReturn = pdTRUE; in uxPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/RVDS/ARM_CA9/ |
| D | port.c | 391 ulPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 406 ulPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 431 ulReturn = pdTRUE; in ulPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/oWatcom/16BitDOS/Flsh186/ |
| D | port.c | 138 sSchedulerRunning = pdTRUE; in xPortStartScheduler() 198 if( sSchedulerRunning == pdTRUE ) in prvExitFunction()
|
| /Kernel-v11.0.1/portable/BCC/16BitDOS/Flsh186/ |
| D | port.c | 136 xSchedulerRunning = pdTRUE; in xPortStartScheduler() 196 if( xSchedulerRunning == pdTRUE ) in prvExitFunction()
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM3_MPU/ |
| D | port.c | 297 if( xRunPrivileged == pdTRUE ) in pxPortInitialiseStack() 681 xTaskIsPrivileged = pdTRUE; in xPortIsTaskPrivileged() 883 xSchedulerRunning = pdTRUE; in xPortStartScheduler() 1357 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1376 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1502 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1513 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1519 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1535 return pdTRUE; in xPortIsAuthorizedToAccessKernelObject()
|
| /Kernel-v11.0.1/portable/IAR/ARM_CM4F_MPU/ |
| D | port.c | 334 if( xRunPrivileged == pdTRUE ) in pxPortInitialiseStack() 689 xTaskIsPrivileged = pdTRUE; in xPortIsTaskPrivileged() 863 xSchedulerRunning = pdTRUE; in xPortStartScheduler() 1258 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1277 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1404 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1415 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1421 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1437 return pdTRUE; in xPortIsAuthorizedToAccessKernelObject()
|
| /Kernel-v11.0.1/portable/GCC/Arm_AARCH64/ |
| D | port.c | 435 ullPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler() 447 ullPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU() 474 ulReturn = pdTRUE; in uxPortSetInterruptMask()
|
| /Kernel-v11.0.1/portable/ThirdParty/GCC/Posix/ |
| D | port.c | 229 while( xSchedulerEnd != pdTRUE ) in xPortStartScheduler() 272 xSchedulerEnd = pdTRUE; in vPortEndScheduler() 455 pxThread->xDying = pdTRUE; in vPortThreadDying() 513 if( pxThreadToSuspend->xDying == pdTRUE ) in prvSwitchThread()
|
| /Kernel-v11.0.1/portable/oWatcom/16BitDOS/PC/ |
| D | port.c | 167 sSchedulerRunning = pdTRUE; in xPortStartScheduler() 254 if( sSchedulerRunning == pdTRUE ) in prvExitFunction()
|
| /Kernel-v11.0.1/portable/BCC/16BitDOS/PC/ |
| D | port.c | 157 xSchedulerRunning = pdTRUE; in xPortStartScheduler() 241 if( xSchedulerRunning == pdTRUE ) in prvExitFunction()
|
| /Kernel-v11.0.1/portable/ThirdParty/xClang/XCOREAI/ |
| D | port.c | 23 ulPortYieldRequired[ xCoreID ] = pdTRUE; in vIntercoreInterruptISR() 63 ulPortYieldRequired[ xCoreID ] = pdTRUE; in DEFINE_RTOS_INTERRUPT_CALLBACK()
|
| /Kernel-v11.0.1/portable/WizC/PIC18/Drivers/Tick/ |
| D | isrTick.c | 72 uxSwitchRequested = pdTRUE;
|
| /Kernel-v11.0.1/portable/GCC/ARM_CM4_MPU/ |
| D | port.c | 323 if( xRunPrivileged == pdTRUE ) in pxPortInitialiseStack() 747 xTaskIsPrivileged = pdTRUE; in xPortIsTaskPrivileged() 968 xSchedulerRunning = pdTRUE; in xPortStartScheduler() 1528 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1547 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessBuffer() 1673 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1684 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1690 xAccessGranted = pdTRUE; in xPortIsAuthorizedToAccessKernelObject() 1706 return pdTRUE; in xPortIsAuthorizedToAccessKernelObject()
|