Home
last modified time | relevance | path

Searched refs:SemaphoreHandle_t (Results 1 – 25 of 159) sorted by relevance

1234567

/hal_espressif-3.5.0/components/mbedtls/port/sha/parallel_engine/
Dsha.c58 static SemaphoreHandle_t engine_states[3];
104 static SemaphoreHandle_t sha_get_engine_state(esp_sha_type sha_type) in sha_get_engine_state()
107 volatile SemaphoreHandle_t *engine = &engine_states[idx]; in sha_get_engine_state()
108 SemaphoreHandle_t result = *engine; in sha_get_engine_state()
113 SemaphoreHandle_t new_engine = xSemaphoreCreateBinary(); in sha_get_engine_state()
143 SemaphoreHandle_t engine_state = sha_get_engine_state(sha_type); in esp_sha_lock_engine_common()
170 SemaphoreHandle_t engine_state = sha_get_engine_state(sha_type); in esp_sha_unlock_engine()
191 SemaphoreHandle_t engine_state = sha_get_engine_state(sha_type); in esp_sha_read_digest_state()
211 SemaphoreHandle_t engine_state = sha_get_engine_state(sha_type); in esp_sha_block()
/hal_espressif-3.5.0/components/esp_wifi/test/
Dtest_wifi_init.c79 SemaphoreHandle_t *sema = (SemaphoreHandle_t *) arg; in wifi_driver_can_start_on_APP_CPU_task()
107 SemaphoreHandle_t sema = xSemaphoreCreateBinary();
124 SemaphoreHandle_t *sema = (SemaphoreHandle_t *) arg; in wifi_start_stop_task()
160 SemaphoreHandle_t sema = xSemaphoreCreateBinary();
177 SemaphoreHandle_t *sema = (SemaphoreHandle_t *) arg; in wifi_stop_task()
209 SemaphoreHandle_t sema = xSemaphoreCreateBinary();
226 SemaphoreHandle_t *sema = (SemaphoreHandle_t *) arg; in wifi_deinit_task()
262 SemaphoreHandle_t sema = xSemaphoreCreateBinary();
/hal_espressif-3.5.0/components/esp_timer/test/
Dtest_esp_timer.c123 SemaphoreHandle_t done = (SemaphoreHandle_t) arg; in set_alarm_task()
141 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
207 SemaphoreHandle_t done;
275 SemaphoreHandle_t done;
313 SemaphoreHandle_t done = xSemaphoreCreateCounting(3, 0);
386 SemaphoreHandle_t done = (SemaphoreHandle_t) arg; in test_short_intervals_timer_func()
397 SemaphoreHandle_t semaphore = xSemaphoreCreateCounting(2, 0);
448 SemaphoreHandle_t done;
505 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
534 SemaphoreHandle_t notify_from_timer_cb;
[all …]
/hal_espressif-3.5.0/components/freertos/test/
Dtest_freertos_mutex.c12 SemaphoreHandle_t mutex = (SemaphoreHandle_t) arg; in mutex_release_task()
19 SemaphoreHandle_t mutex = xSemaphoreCreateMutex();
Dtest_freertos_task_delete.c89 SemaphoreHandle_t sem;
99 SemaphoreHandle_t sem = p->sem; in tsk_blocks_frequently()
129 SemaphoreHandle_t sem = xSemaphoreCreateMutex();
Dtest_suspend_scheduler.c23 static SemaphoreHandle_t isr_semaphore;
41 SemaphoreHandle_t trigger_sem;
225 SemaphoreHandle_t wake_sem = xSemaphoreCreateMutex();
Dtest_freertos_task_utilities.c49 SemaphoreHandle_t sem;
50 SemaphoreHandle_t mux;
Dtest_freertos_debug_functions.c22 static SemaphoreHandle_t start_sem[portNUM_PROCESSORS];
23 static SemaphoreHandle_t done_sem = NULL;
Dtest_isr_latency.c27 static SemaphoreHandle_t sync;
28 static SemaphoreHandle_t end_sema;
/hal_espressif-3.5.0/examples/peripherals/twai/twai_self_test/main/
Dtwai_self_test_example_main.c51 static SemaphoreHandle_t tx_sem;
52 static SemaphoreHandle_t rx_sem;
53 static SemaphoreHandle_t ctrl_sem;
54 static SemaphoreHandle_t done_sem;
/hal_espressif-3.5.0/components/driver/test/
Dtest_dedicated_gpio.c62 SemaphoreHandle_t sem;
145 SemaphoreHandle_t sem = xSemaphoreCreateCounting(SOC_CPU_CORES_NUM, 0);
164 SemaphoreHandle_t sem = (SemaphoreHandle_t)args; in test_dedic_gpio_isr_callback()
175 SemaphoreHandle_t sem = xSemaphoreCreateBinary();
/hal_espressif-3.5.0/examples/peripherals/usb/host/usb_host_lib/main/
Dusb_host_lib_main.c23 SemaphoreHandle_t signaling_sem = (SemaphoreHandle_t)arg; in host_lib_daemon_task()
59 SemaphoreHandle_t signaling_sem = xSemaphoreCreateBinary(); in app_main()
/hal_espressif-3.5.0/components/esp_eth/test_apps/main/
Desp_eth_test.c92 SemaphoreHandle_t mutex = (SemaphoreHandle_t)arg; in eth_event_handler()
102 SemaphoreHandle_t mutex = xSemaphoreCreateBinary();
146 SemaphoreHandle_t mutex = (SemaphoreHandle_t)arg; in eth_event_handler()
155 SemaphoreHandle_t mutex = xSemaphoreCreateBinary();
270 SemaphoreHandle_t mutex;
/hal_espressif-3.5.0/components/lwip/port/esp32/include/arch/
Dsys_arch.h47 typedef SemaphoreHandle_t sys_sem_t;
48 typedef SemaphoreHandle_t sys_mutex_t;
/hal_espressif-3.5.0/components/esp_ipc/src/
Desp_ipc.c23 static SemaphoreHandle_t s_ipc_mutex[portNUM_PROCESSORS]; // This mutex is used as a global lock…
24 static SemaphoreHandle_t s_ipc_sem[portNUM_PROCESSORS]; // Two semaphores used to wake each of…
25 static SemaphoreHandle_t s_ipc_ack[portNUM_PROCESSORS]; // Semaphore used to acknowledge that …
/hal_espressif-3.5.0/examples/peripherals/ledc/ledc_fade/main/
Dledc_fade_example_main.c73 SemaphoreHandle_t counting_sem = (SemaphoreHandle_t) user_arg; in cb_ledc_fade_end_event()
186 SemaphoreHandle_t counting_sem = xSemaphoreCreateCounting(LEDC_TEST_CH_NUM, 0); in app_main()
/hal_espressif-3.5.0/components/esp_event/private_include/
Desp_event_internal.h83SemaphoreHandle_t mutex; /**< mutex for updating the events…
89SemaphoreHandle_t profiling_mutex; /**< mutex used for profiliing */
/hal_espressif-3.5.0/examples/peripherals/twai/twai_network/twai_network_slave/main/
Dtwai_network_example_slave_main.c79 static SemaphoreHandle_t ctrl_task_sem;
80 static SemaphoreHandle_t stop_data_sem;
81 static SemaphoreHandle_t done_sem;
/hal_espressif-3.5.0/examples/peripherals/twai/twai_network/twai_network_master/main/
Dtwai_network_example_master_main.c78 static SemaphoreHandle_t stop_ping_sem;
79 static SemaphoreHandle_t ctrl_task_sem;
80 static SemaphoreHandle_t done_sem;
/hal_espressif-3.5.0/components/esp_system/test/
Dtest_sleep.c98 SemaphoreHandle_t done = (SemaphoreHandle_t) arg; in test_light_sleep()
105 SemaphoreHandle_t done = xSemaphoreCreateCounting(2, 0);
125 SemaphoreHandle_t done = xSemaphoreCreateCounting(2, 0);
/hal_espressif-3.5.0/examples/peripherals/twai/twai_alert_and_recovery/main/
Dtwai_alert_and_recovery_example_main.c48 static SemaphoreHandle_t tx_task_sem;
49 static SemaphoreHandle_t ctrl_task_sem;
/hal_espressif-3.5.0/components/newlib/
Dlocks.c370 SemaphoreHandle_t handle; in esp_newlib_locks_init()
372 assert(handle == (SemaphoreHandle_t) &s_common_mutex); in esp_newlib_locks_init()
374 assert(handle == (SemaphoreHandle_t) &s_common_recursive_mutex); in esp_newlib_locks_init()
/hal_espressif-3.5.0/components/cxx/
Dcxx_guards.cpp20 static SemaphoreHandle_t s_static_init_mutex = NULL; //!< lock used for the critical section
21 static SemaphoreHandle_t s_static_init_wait_sem = NULL; //!< counting semaphore used by the wai…
/hal_espressif-3.5.0/components/usb/test/hcd/
Dtest_hcd_port.c274 SemaphoreHandle_t sync_sem = (SemaphoreHandle_t) arg; in concurrent_task()
289 SemaphoreHandle_t sync_sem = xSemaphoreCreateBinary();
/hal_espressif-3.5.0/examples/system/freertos/real_time_stats/main/
Dreal_time_stats_example_main.c25 static SemaphoreHandle_t sync_spin_task;
26 static SemaphoreHandle_t sync_stats_task;

1234567