Lines Matching refs:UBaseType_t
138 UBaseType_t uxTopPriority = uxTopReadyPriority; \
174 UBaseType_t uxTopPriority; \
189 … if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \
269 …UBaseType_t uxPriority; /**< The priority of the task. 0 is the lowest priori…
278 …UBaseType_t uxCriticalNesting; /**< Holds the critical section nesting depth for ports that do not…
282 …UBaseType_t uxTCBNumber; /**< Stores a number that increments each time a TCB is created. It all…
283 … UBaseType_t uxTaskNumber; /**< Stores a number specifically for use by third party trace code. */
287 …UBaseType_t uxBasePriority; /**< The priority last assigned to the task - used by the priority inh…
288 UBaseType_t uxMutexesHeld;
349 PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U;
366 PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U;
368 PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY;
373 PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U;
380 const volatile UBaseType_t uxTopUsedPriority = configMAX_PRIORITIES - 1U;
390 PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) 0U;
474 static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t * pxTaskStatusArray,
542 UBaseType_t uxPriority,
572 UBaseType_t uxPriority, in xTaskCreateStatic()
729 UBaseType_t uxPriority, in xTaskCreate()
824 UBaseType_t uxPriority, in prvInitialiseNewTask()
830 UBaseType_t x; in prvInitialiseNewTask()
891 for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) in prvInitialiseNewTask()
920 if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) in prvInitialiseNewTask()
922 uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; in prvInitialiseNewTask()
1044 if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) in prvAddNewTaskToReadyList()
1127 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskDelete()
1203 configASSERT( uxSchedulerSuspended == ( UBaseType_t ) 0U ); in vTaskDelete()
1226 configASSERT( uxSchedulerSuspended == ( UBaseType_t ) 0U ); in xTaskDelayUntil()
1312 configASSERT( uxSchedulerSuspended == ( UBaseType_t ) 0U ); in vTaskDelay()
1458 UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) in uxTaskPriorityGet()
1461 UBaseType_t uxReturn; in uxTaskPriorityGet()
1480 UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) in uxTaskPriorityGetFromISR()
1483 UBaseType_t uxReturn; in uxTaskPriorityGetFromISR()
1484 UBaseType_t uxSavedInterruptState; in uxTaskPriorityGetFromISR()
1522 UBaseType_t uxNewPriority ) in vTaskPrioritySet()
1525 UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; in vTaskPrioritySet()
1531 if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) in vTaskPrioritySet()
1533 uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; in vTaskPrioritySet()
1646 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskPrioritySet()
1701 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskSuspend()
1760 configASSERT( uxSchedulerSuspended == ( UBaseType_t ) 0U ); in vTaskSuspend()
1897 UBaseType_t uxSavedInterruptStatus; in xTaskResumeFromISR()
1926 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskResumeFromISR()
2130 UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; in prvGetExpectedIdleTime()
2145 const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; in prvGetExpectedIdleTime()
2195 configASSERT( uxSchedulerSuspended != ( UBaseType_t ) 0U ); in xTaskResumeAll()
2206 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskResumeAll()
2208 if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) in xTaskResumeAll()
2318 UBaseType_t uxSavedInterruptStatus; in xTaskGetTickCountFromISR()
2346 UBaseType_t uxTaskGetNumberOfTasks( void ) in uxTaskGetNumberOfTasks()
2374 UBaseType_t x; in prvSearchForNameWithinSingleList()
2380 if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) in prvSearchForNameWithinSingleList()
2392 for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) in prvSearchForNameWithinSingleList()
2441 UBaseType_t uxQueue = configMAX_PRIORITIES; in xTaskGetHandle()
2460 …} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts a… in xTaskGetHandle()
2550 UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, in uxTaskGetSystemState()
2551 const UBaseType_t uxArraySize, in uxTaskGetSystemState()
2554 UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; in uxTaskGetSystemState()
2567 …} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts a… in uxTaskGetSystemState()
2654 configASSERT( uxSchedulerSuspended != ( UBaseType_t ) 0U ); in vTaskStepTick()
2683 configASSERT( uxSchedulerSuspended == ( UBaseType_t ) 0U ); in xTaskCatchUpTicks()
2792 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskIncrementTick()
2902 …listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) in xTaskIncrementTick()
3018 UBaseType_t uxSavedInterruptStatus; in xTaskGetApplicationTaskTagFromISR()
3072 if( uxSchedulerSuspended != ( UBaseType_t ) 0U ) in vTaskSwitchContext()
3177 configASSERT( uxSchedulerSuspended != ( UBaseType_t ) 0U ); in vTaskPlaceOnUnorderedEventList()
3252 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskRemoveFromEventList()
3305 configASSERT( uxSchedulerSuspended != ( UBaseType_t ) 0U ); in vTaskRemoveFromUnorderedEventList()
3440 UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) in uxTaskGetTaskNumber()
3442 UBaseType_t uxReturn; in uxTaskGetTaskNumber()
3464 const UBaseType_t uxHandle ) in vTaskSetTaskNumber()
3529 … if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) in portTASK_FUNCTION()
3606 const UBaseType_t uxNonApplicationTasks = 1; in eTaskConfirmSleepModeStatus()
3715 UBaseType_t uxPriority; in prvInitialiseTaskLists()
3717 …for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriorit… in prvInitialiseTaskLists()
3755 while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) in prvCheckTasksWaitingTermination()
3890 static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t * pxTaskStatusArray, in prvListTasksWithinSingleList()
3896 UBaseType_t uxTask = 0; in prvListTasksWithinSingleList()
3898 if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) in prvListTasksWithinSingleList()
3986 UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) in uxTaskGetStackHighWaterMark()
3990 UBaseType_t uxReturn; in uxTaskGetStackHighWaterMark()
4004 uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); in uxTaskGetStackHighWaterMark()
4117 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskGetSchedulerState()
4166 if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in xTaskPriorityInherit()
4245 if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) in xTaskPriorityDisinherit()
4252 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in xTaskPriorityDisinherit()
4306 UBaseType_t uxHighestPriorityWaitingTask ) in vTaskPriorityDisinheritAfterTimeout()
4309 UBaseType_t uxPriorityUsedOnEntry, uxPriorityToUse; in vTaskPriorityDisinheritAfterTimeout()
4310 const UBaseType_t uxOnlyOneMutexHeld = ( UBaseType_t ) 1; in vTaskPriorityDisinheritAfterTimeout()
4371 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskPriorityDisinheritAfterTimeout()
4504 UBaseType_t uxArraySize, x; in vTaskList()
4610 UBaseType_t uxArraySize, x; in vTaskGetRunTimeStats()
4759 uint32_t ulTaskGenericNotifyTake( UBaseType_t uxIndexToWait, in ulTaskGenericNotifyTake()
4831 BaseType_t xTaskGenericNotifyWait( UBaseType_t uxIndexToWait, in xTaskGenericNotifyWait()
4918 UBaseType_t uxIndexToNotify, in xTaskGenericNotify()
5041 UBaseType_t uxIndexToNotify, in xTaskGenericNotifyFromISR()
5050 UBaseType_t uxSavedInterruptStatus; in xTaskGenericNotifyFromISR()
5137 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in xTaskGenericNotifyFromISR()
5180 UBaseType_t uxIndexToNotify, in vTaskGenericNotifyGiveFromISR()
5185 UBaseType_t uxSavedInterruptStatus; in vTaskGenericNotifyGiveFromISR()
5228 if( uxSchedulerSuspended == ( UBaseType_t ) 0U ) in vTaskGenericNotifyGiveFromISR()
5269 UBaseType_t uxIndexToClear ) in xTaskGenericNotifyStateClear()
5303 UBaseType_t uxIndexToClear, in ulTaskGenericNotifyValueClear()
5404 if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in prvAddCurrentTaskToDelayedList()