Searched refs:xHandle (Results 1 – 3 of 3) sorted by relevance
/device/soc/esp/esp32/components/osal/ |
D | queue.c | 703 QueueHandle_t xHandle; in xQueueCreateCountingSemaphoreStatic() local 708 …xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic() 710 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic() 712 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic() 721 return xHandle; in xQueueCreateCountingSemaphoreStatic() 731 QueueHandle_t xHandle; in xQueueCreateCountingSemaphore() local 736 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore() 738 if( xHandle != NULL ) in xQueueCreateCountingSemaphore() 740 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphore() 749 return xHandle; in xQueueCreateCountingSemaphore()
|
/device/soc/esp/esp32/components/pthread/ |
D | pthread.c | 220 TaskHandle_t xHandle = NULL; 297 &xHandle, 310 pthread->handle = xHandle; 319 xTaskNotify(xHandle, 0, eNoAction); 323 ESP_LOGV(TAG, "Created task %x", (uint32_t)xHandle); 1285 TaskHandle_t xHandle = NULL; in pthread_create() local
|
/device/soc/esp/esp32/components/osal/include/esp_osal/ |
D | task.h | 141 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the stru… member
|