Lines Matching refs:pxCRCB
66 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
68 …if( pxCRCB->uxPriority > uxTopCoRoutineReadyPriority ) …
70 …uxTopCoRoutineReadyPriority = pxCRCB->uxPriority; …
72 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGeneric…
225 CRCB_t * pxCRCB; in prvCheckDelayedList() local
249 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
251 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
264 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
267 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
269 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
274 prvAddCoRoutineToReadyQueue( pxCRCB ); in prvCheckDelayedList()