Home
last modified time | relevance | path

Searched refs:btdm_queue_item_t (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/bt/controller/esp32/
Dbt.c115 } btdm_queue_item_t; typedef
559btdm_queue_item_t *semphr = heap_caps_calloc(1, sizeof(btdm_queue_item_t), MALLOC_CAP_8BIT|MALLOC_… in semphr_create_wrapper()
587 btdm_queue_item_t *semphr_item = (btdm_queue_item_t *)semphr; in semphr_delete_wrapper()
612 void *handle = ((btdm_queue_item_t *)semphr)->handle; in semphr_take_from_isr_wrapper()
619 void *handle = ((btdm_queue_item_t *)semphr)->handle; in semphr_give_from_isr_wrapper()
632 void *handle = ((btdm_queue_item_t *)semphr)->handle; in semphr_take_wrapper()
651 void *handle = ((btdm_queue_item_t *)semphr)->handle; in semphr_give_wrapper()
681 btdm_queue_item_t *queue = NULL; in queue_create_wrapper()
683 …queue = (btdm_queue_item_t*)heap_caps_malloc(sizeof(btdm_queue_item_t), MALLOC_CAP_INTERNAL|MALLOC… in queue_create_wrapper()
695 btdm_queue_item_t *queue_item = (btdm_queue_item_t *)queue; in queue_delete_wrapper()
[all …]
/hal_espressif-latest/components/bt/controller/esp32c3/
Dbt.c142 } btdm_queue_item_t; typedef
556btdm_queue_item_t *semphr = heap_caps_calloc(1, sizeof(btdm_queue_item_t), MALLOC_CAP_8BIT|MALLOC_… in semphr_create_wrapper()
572 btdm_queue_item_t *semphr_item = (btdm_queue_item_t *)semphr; in semphr_delete_wrapper()
583 return (int)xSemaphoreTakeFromISR(((btdm_queue_item_t *)semphr)->handle, hptw); in semphr_take_from_isr_wrapper()
588 return (int)xSemaphoreGiveFromISR(((btdm_queue_item_t *)semphr)->handle, hptw); in semphr_give_from_isr_wrapper()
594 return (int)xSemaphoreTake(((btdm_queue_item_t *)semphr)->handle, portMAX_DELAY); in semphr_take_wrapper()
596 …return (int)xSemaphoreTake(((btdm_queue_item_t *)semphr)->handle, block_time_ms / portTICK_PERIOD_… in semphr_take_wrapper()
602 return (int)xSemaphoreGive(((btdm_queue_item_t *)semphr)->handle); in semphr_give_wrapper()
627 btdm_queue_item_t *queue = NULL; in queue_create_wrapper()
629 …queue = (btdm_queue_item_t*)heap_caps_malloc(sizeof(btdm_queue_item_t), MALLOC_CAP_INTERNAL|MALLOC… in queue_create_wrapper()
[all …]