Lines Matching refs:pxCRCB
70 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
72 …if( ( pxCRCB )->uxPriority > uxTopCoRoutineReadyPriority ) …
74 …uxTopCoRoutineReadyPriority = ( pxCRCB )->uxPriority; …
76 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
240 CRCB_t * pxCRCB; in prvCheckDelayedList() local
264 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
266 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
279 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
282 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
284 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
289 prvAddCoRoutineToReadyQueue( pxCRCB ); in prvCheckDelayedList()