Searched refs:xHandle (Results 1 – 6 of 6) sorted by relevance
/Kernel-v11.1.0/include/ |
D | croutine.h | 50 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 …]
|
D | task.h | 162 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the i… member
|
D | FreeRTOS.h | 1245 #define traceRETURN_xQueueCreateCountingSemaphoreStatic( xHandle ) argument 1253 #define traceRETURN_xQueueCreateCountingSemaphore( xHandle ) argument
|
/Kernel-v11.1.0/ |
D | queue.c | 156 QueueHandle_t xHandle; member 866 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphoreStatic() local 873 …xHandle = 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 912 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore() [all …]
|
D | tasks.c | 6133 pxTaskStatus->xHandle = pxTCB; in vTaskGetInfo()
|
/Kernel-v11.1.0/portable/Common/ |
D | mpu_wrappers_v2.c | 153 static int32_t MPU_GetIndexForHandle( OpaqueObjectHandle_t xHandle, 167 OpaqueObjectHandle_t xHandle, 200 …ueHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( ( lIndex ), ( Op… argument 204 …ueSetHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( ( lIndex ), ( Opaque… argument 206 …etMemberHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( ( lIndex ), ( OpaqueObj… argument 208 …MPU_GetIndexForQueueSetMemberHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHa… argument 214 …TaskHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( ( lIndex ), ( Opaqu… argument 216 …efine MPU_GetIndexForTaskHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObje… argument 222 …ntGroupHandleAtIndex( lIndex, xHandle ) MPU_StoreHandleAndDataAtIndex( ( lIndex ), ( OpaqueOb… argument 224 …ne MPU_GetIndexForEventGroupHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectH… argument [all …]
|