Home
last modified time | relevance | path

Searched refs:max_count (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/common/osi/
Dsemaphore.c26 int osi_sem_new(osi_sem_t *sem, uint32_t max_count, uint32_t init_count) in osi_sem_new() argument
31 *sem = xSemaphoreCreateCounting(max_count, init_count); in osi_sem_new()
/hal_espressif-latest/components/bt/common/osi/include/osi/
Dsemaphore.h34 int osi_sem_new(osi_sem_t *sem, uint32_t max_count, uint32_t init_count);
/hal_espressif-latest/components/bt/controller/esp32/
Dhli_api.h117 hli_queue_handle_t hli_semaphore_create(size_t max_count, SemaphoreHandle_t downstream);
Dhli_api.c245 hli_queue_handle_t hli_semaphore_create(size_t max_count, SemaphoreHandle_t downstream) in hli_semaphore_create() argument
248 hli_queue_handle_t res = hli_queue_create(max_count, elem_size, (QueueHandle_t) downstream); in hli_semaphore_create()