Home
last modified time | relevance | path

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

123456

/hal_espressif-2.7.6/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-2.7.6/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();
/hal_espressif-2.7.6/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_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-2.7.6/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-2.7.6/components/esp_timer/test/
Dtest_esp_timer.c118 SemaphoreHandle_t done = (SemaphoreHandle_t) arg; in set_alarm_task()
134 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
202 SemaphoreHandle_t done;
269 SemaphoreHandle_t done;
306 SemaphoreHandle_t done = xSemaphoreCreateCounting(3, 0);
384 SemaphoreHandle_t semaphore = xSemaphoreCreateCounting(2, 0);
387 SemaphoreHandle_t done = (SemaphoreHandle_t) arg; in timer_func()
443 SemaphoreHandle_t done;
498 SemaphoreHandle_t done = xSemaphoreCreateCounting(portNUM_PROCESSORS, 0);
529 SemaphoreHandle_t notify_from_timer_cb;
[all …]
/hal_espressif-2.7.6/components/driver/test/
Dtest_dedicated_gpio.c57 SemaphoreHandle_t sem;
140 SemaphoreHandle_t sem = xSemaphoreCreateCounting(SOC_CPU_CORES_NUM, 0);
159 SemaphoreHandle_t sem = (SemaphoreHandle_t)args; in test_dedic_gpio_isr_callback()
170 SemaphoreHandle_t sem = xSemaphoreCreateBinary();
/hal_espressif-2.7.6/components/lwip/port/esp32/include/arch/
Dsys_arch.h47 typedef SemaphoreHandle_t sys_sem_t;
48 typedef SemaphoreHandle_t sys_mutex_t;
/hal_espressif-2.7.6/components/esp_ipc/
Dipc.c28 static SemaphoreHandle_t s_ipc_mutex[portNUM_PROCESSORS]; // This mutex is used as a global lock…
29 static SemaphoreHandle_t s_ipc_sem[portNUM_PROCESSORS]; // Two semaphores used to wake each of…
30 static SemaphoreHandle_t s_ipc_ack[portNUM_PROCESSORS]; // Semaphore used to acknowledge that …
/hal_espressif-2.7.6/components/esp_event/private_include/
Desp_event_internal.h81SemaphoreHandle_t mutex; /**< mutex for updating the events…
87SemaphoreHandle_t profiling_mutex; /**< mutex used for profiliing */
/hal_espressif-2.7.6/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-2.7.6/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-2.7.6/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-2.7.6/components/cxx/
Dcxx_guards.cpp28 static SemaphoreHandle_t s_static_init_mutex = NULL; //!< lock used for the critical section
29 static SemaphoreHandle_t s_static_init_wait_sem = NULL; //!< counting semaphore used by the wai…
/hal_espressif-2.7.6/components/freertos/port/xtensa/
Dxtensa_overlay_os_hook.c33 static SemaphoreHandle_t xt_overlay_mutex;
/hal_espressif-2.7.6/components/spi_flash/sim/stubs/freertos/include/freertos/
Dsemphr.h12 typedef void* SemaphoreHandle_t; typedef
/hal_espressif-2.7.6/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);
Dtest_async_memcpy.c134 SemaphoreHandle_t sem = (SemaphoreHandle_t)cb_args; in test_async_memcpy_isr_cb()
145 SemaphoreHandle_t sem = xSemaphoreCreateBinary();
/hal_espressif-2.7.6/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-2.7.6/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;
/hal_espressif-2.7.6/components/esp_common/include/
Desp_expression_with_stack.h41 void esp_execute_shared_stack_function(SemaphoreHandle_t lock,
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_mutex.h27 SemaphoreHandle_t mutex;

123456