Searched refs:xHandle (Results 1 – 5 of 5) sorted by relevance
/Kernel-v10.6.2/include/ |
HD | croutine.h | 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 ) ); \ 498 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument [all …]
|
HD | task.h | 161 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the i… member
|
/Kernel-v10.6.2/ |
HD | queue.c | 153 QueueHandle_t xHandle; member 819 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphoreStatic() local 824 …xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic() 826 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic() 828 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic() 839 configASSERT( xHandle ); in xQueueCreateCountingSemaphoreStatic() 843 return xHandle; in xQueueCreateCountingSemaphoreStatic() 854 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphore() local 859 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore() 861 if( xHandle != NULL ) in xQueueCreateCountingSemaphore() [all …]
|
HD | tasks.c | 3785 pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; in vTaskGetInfo()
|
/Kernel-v10.6.2/portable/Common/ |
HD | mpu_wrappers_v2.c | 153 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 …]
|