Home
last modified time | relevance | path

Searched refs:pdTRUE (Results 1 – 25 of 118) sorted by relevance

12345

/Kernel-v11.0.1/
Devent_groups.c115 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 …]
Dtasks.c302 …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 …]
Dqueue.c424 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/
Dport.c163 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/
Dmessage_buffer.h159 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 )…
Dprojdefs.h53 #define pdTRUE ( ( BaseType_t ) 1 ) macro
59 #define pdPASS ( pdTRUE )
/Kernel-v11.0.1/examples/coverity/
DCMakeLists.txt8 # 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}
DREADME.md7 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/
Dmpu_wrappers_v2.c463 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/
Dport.c301 *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/
Dport.c365 *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/
Dport.c353 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/
Dport.c379 ullPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler()
391 ullPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU()
421 ulReturn = pdTRUE; in uxPortSetInterruptMask()
/Kernel-v11.0.1/portable/RVDS/ARM_CA9/
Dport.c391 ulPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler()
406 ulPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU()
431 ulReturn = pdTRUE; in ulPortSetInterruptMask()
/Kernel-v11.0.1/portable/oWatcom/16BitDOS/Flsh186/
Dport.c138 sSchedulerRunning = pdTRUE; in xPortStartScheduler()
198 if( sSchedulerRunning == pdTRUE ) in prvExitFunction()
/Kernel-v11.0.1/portable/BCC/16BitDOS/Flsh186/
Dport.c136 xSchedulerRunning = pdTRUE; in xPortStartScheduler()
196 if( xSchedulerRunning == pdTRUE ) in prvExitFunction()
/Kernel-v11.0.1/portable/GCC/ARM_CM3_MPU/
Dport.c297 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/
Dport.c334 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/
Dport.c435 ullPortYieldRequired = pdTRUE; in FreeRTOS_Tick_Handler()
447 ullPortTaskHasFPUContext = pdTRUE; in vPortTaskUsesFPU()
474 ulReturn = pdTRUE; in uxPortSetInterruptMask()
/Kernel-v11.0.1/portable/ThirdParty/GCC/Posix/
Dport.c229 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/
Dport.c167 sSchedulerRunning = pdTRUE; in xPortStartScheduler()
254 if( sSchedulerRunning == pdTRUE ) in prvExitFunction()
/Kernel-v11.0.1/portable/BCC/16BitDOS/PC/
Dport.c157 xSchedulerRunning = pdTRUE; in xPortStartScheduler()
241 if( xSchedulerRunning == pdTRUE ) in prvExitFunction()
/Kernel-v11.0.1/portable/ThirdParty/xClang/XCOREAI/
Dport.c23 ulPortYieldRequired[ xCoreID ] = pdTRUE; in vIntercoreInterruptISR()
63 ulPortYieldRequired[ xCoreID ] = pdTRUE; in DEFINE_RTOS_INTERRUPT_CALLBACK()
/Kernel-v11.0.1/portable/WizC/PIC18/Drivers/Tick/
DisrTick.c72 uxSwitchRequested = pdTRUE;
/Kernel-v11.0.1/portable/GCC/ARM_CM4_MPU/
Dport.c323 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()

12345