Searched refs:xSemaphoreCreateCounting (Results 1 – 25 of 36) sorted by relevance
12
/hal_espressif-3.6.0/components/freertos/test/ |
D | test_spinlocks.c | 92 done_sem = xSemaphoreCreateCounting(2, 0); 116 done_sem = xSemaphoreCreateCounting(TOTAL_TASKS, 0);
|
D | test_freertos_eventgroups.c | 49 done_sem = xSemaphoreCreateCounting(NUM_TASKS, 0); 107 done_sem = xSemaphoreCreateCounting(NUM_TASKS, 0);
|
D | test_freertos_debug_functions.c | 58 done_sem = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
|
D | test_queuesets.c | 91 sync_sem = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
|
/hal_espressif-3.6.0/docs/ |
D | doxygen-known-warnings.txt | 1 …maphore' of command @param is not found in the argument list of xSemaphoreCreateCounting(uxMaxCoun…
|
/hal_espressif-3.6.0/components/bt/common/osi/ |
D | semaphore.c | 31 *sem = xSemaphoreCreateCounting(max_count, init_count); in osi_sem_new()
|
/hal_espressif-3.6.0/components/esp_phy/test/ |
D | test_phy_rtc.c | 119 semphr_done = xSemaphoreCreateCounting(1, 0);
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/api/core/ |
D | esp_ble_mesh_common_api.c | 36 if ((semaphore = xSemaphoreCreateCounting(1, 0)) == NULL) { in esp_ble_mesh_init()
|
/hal_espressif-3.6.0/components/freertos/include/freertos/ |
D | semphr.h | 1036 …#define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( (… macro
|
/hal_espressif-3.6.0/components/mbedtls/test/ |
D | test_mbedtls_sha.c | 135 done_sem = xSemaphoreCreateCounting(4, 0); 180 done_sem = xSemaphoreCreateCounting(2, 0);
|
D | test_aes_sha_parallel.c | 115 done_sem = xSemaphoreCreateCounting(2, 0);
|
/hal_espressif-3.6.0/components/esp_system/test/ |
D | test_sleep.c | 105 SemaphoreHandle_t done = xSemaphoreCreateCounting(2, 0); 125 SemaphoreHandle_t done = xSemaphoreCreateCounting(2, 0);
|
/hal_espressif-3.6.0/components/cxx/ |
D | cxx_guards.cpp | 48 s_static_init_wait_sem = xSemaphoreCreateCounting(INT_MAX, 0); in static_init_prepare()
|
/hal_espressif-3.6.0/components/esp_timer/test/ |
D | test_esp_timer.c | 141 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0); 313 SemaphoreHandle_t done = xSemaphoreCreateCounting(3, 0); 397 SemaphoreHandle_t semaphore = xSemaphoreCreateCounting(2, 0); 505 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
|
/hal_espressif-3.6.0/components/cxx/test/ |
D | test_initialization.cpp | 89 s_slow_init_sem = xSemaphoreCreateCounting(10, 0);
|
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/aligenie_demo/components/vendor_model/ |
D | genie_util.c | 129 sem->sem = xSemaphoreCreateCounting(limit, initial_count); in util_semaphore_init()
|
/hal_espressif-3.6.0/examples/system/freertos/real_time_stats/main/ |
D | real_time_stats_example_main.c | 174 sync_spin_task = xSemaphoreCreateCounting(NUM_OF_SPIN_TASKS, 0); in app_main()
|
/hal_espressif-3.6.0/components/pthread/ |
D | pthread_cond_var.c | 165 w.wait_sem = xSemaphoreCreateCounting(1, 0); /* First get will block */ in pthread_cond_timedwait()
|
/hal_espressif-3.6.0/components/esp_hw_support/test/ |
D | test_fp.c | 195 .done = xSemaphoreCreateCounting(4, 0)
|
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_fade/main/ |
D | ledc_fade_example_main.c | 186 SemaphoreHandle_t counting_sem = xSemaphoreCreateCounting(LEDC_TEST_CH_NUM, 0); in app_main()
|
/hal_espressif-3.6.0/components/driver/test/ |
D | test_dedicated_gpio.c | 145 SemaphoreHandle_t sem = xSemaphoreCreateCounting(SOC_CPU_CORES_NUM, 0);
|
/hal_espressif-3.6.0/components/esp_wifi/esp32/ |
D | esp_adapter.c | 249 return (void *)xSemaphoreCreateCounting(max, init); in semphr_create_wrapper() 281 sem = xSemaphoreCreateCounting(1, 0); in wifi_thread_semphr_get_wrapper()
|
/hal_espressif-3.6.0/components/esp_wifi/esp32c3/ |
D | esp_adapter.c | 185 return (void *)xSemaphoreCreateCounting(max, init); in semphr_create_wrapper() 217 sem = xSemaphoreCreateCounting(1, 0); in wifi_thread_semphr_get_wrapper()
|
/hal_espressif-3.6.0/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 231 return (void *)xSemaphoreCreateCounting(max, init); in semphr_create_wrapper() 263 sem = xSemaphoreCreateCounting(1, 0); in wifi_thread_semphr_get_wrapper()
|
/hal_espressif-3.6.0/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 239 return (void *)xSemaphoreCreateCounting(max, init); in semphr_create_wrapper() 271 sem = xSemaphoreCreateCounting(1, 0); in wifi_thread_semphr_get_wrapper()
|
12