Lines Matching refs:pxCRCB
68 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
70 …if( ( pxCRCB )->uxPriority > uxTopCoRoutineReadyPriority ) …
72 …uxTopCoRoutineReadyPriority = ( pxCRCB )->uxPriority; …
74 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
238 CRCB_t * pxCRCB; in prvCheckDelayedList() local
262 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
264 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
277 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
280 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
282 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
287 prvAddCoRoutineToReadyQueue( pxCRCB ); in prvCheckDelayedList()