Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/bt/common/osi/
Dalarm.c32 esp_timer_handle_t alarm_hdl; member
109 if (alarm_cbs[i].alarm_hdl != NULL) { in osi_alarm_deinit()
130 if (alarm_cbs[i].alarm_hdl == NULL) { //available in alarm_cbs_lookfor_available()
186 esp_err_t stat = esp_timer_create(&tca, &timer_id->alarm_hdl); in osi_alarm_new()
200 if (!alarm || alarm->alarm_hdl == NULL) { in alarm_free()
204 esp_timer_stop(alarm->alarm_hdl); in alarm_free()
205 esp_err_t stat = esp_timer_delete(alarm->alarm_hdl); in alarm_free()
243 if (!alarm || alarm->alarm_hdl == NULL) { in alarm_set()
252 stat = esp_timer_start_periodic(alarm->alarm_hdl, (uint64_t)timeout_us); in alarm_set()
254 stat = esp_timer_start_once(alarm->alarm_hdl, (uint64_t)timeout_us); in alarm_set()
[all …]
/hal_espressif-3.4.0/components/bt/esp_ble_mesh/mesh_common/
Dmesh_timer.c24 esp_timer_handle_t alarm_hdl; member