Home
last modified time | relevance | path

Searched refs:xHandle (Results 1 – 6 of 6) sorted by relevance

/Kernel-v11.0.1/include/
Dcroutine.h50 typedef void (* crCOROUTINE_CODE)( CoRoutineHandle_t xHandle,
255 #define crSET_STATE0( xHandle ) \ argument
256 ( ( CRCB_t * ) ( xHandle ) )->uxState = ( __LINE__ * 2 ); return; \
258 #define crSET_STATE1( xHandle ) \ argument
259 ( ( CRCB_t * ) ( xHandle ) )->uxState = ( ( __LINE__ * 2 ) + 1 ); return; \
310 #define crDELAY( xHandle, xTicksToDelay ) \ argument
316 crSET_STATE0( ( xHandle ) ); \
404 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument
409 crSET_STATE0( ( xHandle ) ); \
414 crSET_STATE1( ( xHandle ) ); \
[all …]
Dtask.h162 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the i… member
DFreeRTOS.h1193 #define traceRETURN_xQueueCreateCountingSemaphoreStatic( xHandle ) argument
1201 #define traceRETURN_xQueueCreateCountingSemaphore( xHandle ) argument
/Kernel-v11.0.1/
Dqueue.c156 QueueHandle_t xHandle; member
866 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphoreStatic() local
873xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic()
875 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic()
877 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic()
888 configASSERT( xHandle ); in xQueueCreateCountingSemaphoreStatic()
892 traceRETURN_xQueueCreateCountingSemaphoreStatic( xHandle ); in xQueueCreateCountingSemaphoreStatic()
894 return xHandle; in xQueueCreateCountingSemaphoreStatic()
905 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphore() local
912xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore()
[all …]
Dtasks.c6172 pxTaskStatus->xHandle = pxTCB; in vTaskGetInfo()
/Kernel-v11.0.1/portable/Common/
Dmpu_wrappers_v2.c153 static int32_t MPU_GetIndexForHandle( OpaqueObjectHandle_t xHandle,
167 OpaqueObjectHandle_t xHandle,
200 …QueueHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( lIndex, ( Opa… argument
204 …QueueSetHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( lIndex, ( OpaqueO… argument
206 …ueSetMemberHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( lIndex, ( OpaqueObje… argument
208 … MPU_GetIndexForQueueSetMemberHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectH… argument
214 …oreTaskHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( lIndex, ( Opaque… argument
216 …define MPU_GetIndexForTaskHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObj… argument
221 …EventGroupHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( lIndex, ( OpaqueObj… argument
223 …ine MPU_GetIndexForEventGroupHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObject… argument
[all …]