Home
last modified time | relevance | path

Searched refs:dispatch_method (Results 1 – 25 of 26) sorted by relevance

12

/hal_espressif-3.6.0/components/esp_timer/src/
Desp_timer.c135 args->dispatch_method < 0 || args->dispatch_method >= ESP_TIMER_MAX) { in esp_timer_create()
144 result->flags = (args->dispatch_method ? FL_ISR_DISPATCH_METHOD : 0) | in esp_timer_create()
148 esp_timer_dispatch_t dispatch_method = result->flags & FL_ISR_DISPATCH_METHOD; in esp_timer_create() local
149 timer_list_lock(dispatch_method); in esp_timer_create()
151 timer_list_unlock(dispatch_method); in esp_timer_create()
166 esp_timer_dispatch_t dispatch_method = timer->flags & FL_ISR_DISPATCH_METHOD; in esp_timer_start_once() local
167 timer_list_lock(dispatch_method); in esp_timer_start_once()
174 timer_list_unlock(dispatch_method); in esp_timer_start_once()
188 esp_timer_dispatch_t dispatch_method = timer->flags & FL_ISR_DISPATCH_METHOD; in esp_timer_start_periodic() local
189 timer_list_lock(dispatch_method); in esp_timer_start_periodic()
[all …]
Dets_timer_legacy.c68 .dispatch_method = ESP_TIMER_TASK in ets_timer_setfn()
/hal_espressif-3.6.0/components/touch_element/
Dtouch_button.c40 …line void button_dispatch(te_button_handle_t button_handle, touch_elem_dispatch_t dispatch_method);
125 te_button->config->dispatch_method = TOUCH_ELEM_DISP_MAX; in touch_button_create()
160 …ton_set_dispatch_method(touch_button_handle_t button_handle, touch_elem_dispatch_t dispatch_method) in touch_button_set_dispatch_method() argument
164 …TE_CHECK(dispatch_method >= TOUCH_ELEM_DISP_EVENT && dispatch_method <= TOUCH_ELEM_DISP_MAX, ESP_E… in touch_button_set_dispatch_method()
167 te_button->config->dispatch_method = dispatch_method; in touch_button_set_dispatch_method()
211 touch_elem_dispatch_t dispatch_method = te_button->config->dispatch_method; in touch_button_set_longpress() local
212 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in touch_button_set_longpress()
217 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in touch_button_set_longpress()
343 …nline void button_dispatch(te_button_handle_t button_handle, touch_elem_dispatch_t dispatch_method) in button_dispatch() argument
345 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in button_dispatch()
[all …]
Dtouch_matrix.c43 …line void matrix_dispatch(te_matrix_handle_t matrix_handle, touch_elem_dispatch_t dispatch_method);
149 te_matrix->config->dispatch_method = TOUCH_ELEM_DISP_MAX; in touch_matrix_create()
199 …rix_set_dispatch_method(touch_matrix_handle_t matrix_handle, touch_elem_dispatch_t dispatch_method) in touch_matrix_set_dispatch_method() argument
203 …TE_CHECK(dispatch_method >= TOUCH_ELEM_DISP_EVENT && dispatch_method <= TOUCH_ELEM_DISP_MAX, ESP_E… in touch_matrix_set_dispatch_method()
206 te_matrix->config->dispatch_method = dispatch_method; in touch_matrix_set_dispatch_method()
250 touch_elem_dispatch_t dispatch_method = te_matrix->config->dispatch_method; in touch_matrix_set_longpress() local
251 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in touch_matrix_set_longpress()
256 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in touch_matrix_set_longpress()
398 …nline void matrix_dispatch(te_matrix_handle_t matrix_handle, touch_elem_dispatch_t dispatch_method) in matrix_dispatch() argument
400 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in matrix_dispatch()
[all …]
Dtouch_slider.c50 …line void slider_dispatch(te_slider_handle_t slider_handle, touch_elem_dispatch_t dispatch_method);
153 te_slider->config->dispatch_method = TOUCH_ELEM_DISP_MAX; in touch_slider_create()
211 …der_set_dispatch_method(touch_slider_handle_t slider_handle, touch_elem_dispatch_t dispatch_method) in touch_slider_set_dispatch_method() argument
215 …TE_CHECK(dispatch_method >= TOUCH_ELEM_DISP_EVENT && dispatch_method <= TOUCH_ELEM_DISP_MAX, ESP_E… in touch_slider_set_dispatch_method()
218 te_slider->config->dispatch_method = dispatch_method; in touch_slider_set_dispatch_method()
400 …nline void slider_dispatch(te_slider_handle_t slider_handle, touch_elem_dispatch_t dispatch_method) in slider_dispatch() argument
402 if (dispatch_method == TOUCH_ELEM_DISP_EVENT) { in slider_dispatch()
404 } else if (dispatch_method == TOUCH_ELEM_DISP_CALLBACK) { in slider_dispatch()
427 touch_elem_dispatch_t dispatch_method = slider_handle->config->dispatch_method; in slider_proc_state() local
442 slider_dispatch(slider_handle, dispatch_method); in slider_proc_state()
[all …]
/hal_espressif-3.6.0/components/touch_element/include/touch_element/
Dtouch_element_private.h92 touch_elem_dispatch_t dispatch_method; //Button dispatch method member
113 touch_elem_dispatch_t dispatch_method; //Slider dispatch method member
144 touch_elem_dispatch_t dispatch_method; //Matrix button dispatch method member
Dtouch_button.h152 …on_set_dispatch_method(touch_button_handle_t button_handle, touch_elem_dispatch_t dispatch_method);
Dtouch_matrix.h170 …ix_set_dispatch_method(touch_matrix_handle_t matrix_handle, touch_elem_dispatch_t dispatch_method);
Dtouch_slider.h170 …er_set_dispatch_method(touch_slider_handle_t slider_handle, touch_elem_dispatch_t dispatch_method);
/hal_espressif-3.6.0/components/esp_timer/test/
Dtest_esp_timer.c950 .dispatch_method = ESP_TIMER_ISR,
961 .dispatch_method = ESP_TIMER_TASK,
1007 .dispatch_method = ESP_TIMER_ISR,
1018 .dispatch_method = ESP_TIMER_TASK,
1066 .dispatch_method = ESP_TIMER_ISR,
1077 .dispatch_method = ESP_TIMER_TASK,
1121 .dispatch_method = ESP_TIMER_ISR,
1132 .dispatch_method = ESP_TIMER_TASK,
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/button/
Dbutton.c300 tmr_param_rls.dispatch_method = ESP_TIMER_TASK; in iot_button_create()
316 tmr_param_psh.dispatch_method = ESP_TIMER_TASK; in iot_button_create()
365 tmr_param_ser.dispatch_method = ESP_TIMER_TASK; in iot_button_set_serial_cb()
428 tmr_param_cus.dispatch_method = ESP_TIMER_TASK; in iot_button_add_custom_cb()
/hal_espressif-3.6.0/components/mdns/host_test/components/esp_timer_linux/include/
Desp_timer.h30 esp_timer_dispatch_t dispatch_method; //!< Call the callback from task or from ISR member
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/
Desp_timer_cxx.cpp37 timer_args.dispatch_method = ESP_TIMER_TASK; in ESPTimer()
/hal_espressif-3.6.0/components/esp_timer/include/
Desp_timer.h73 esp_timer_dispatch_t dispatch_method; //!< Call the callback from task or from ISR member
/hal_espressif-3.6.0/examples/provisioning/legacy/console_prov/main/
Dapp_prov.c297 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_console_provisioning()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/components/case/
Drun_tc.c63 .dispatch_method = ESP_TIMER_TASK, in create_statistic_timer()
Dsync.c497 .dispatch_method = ESP_TIMER_TASK, in create_sync_timer()
/hal_espressif-3.6.0/examples/provisioning/legacy/ble_prov/main/
Dapp_prov.c359 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_ble_provisioning()
/hal_espressif-3.6.0/examples/provisioning/legacy/softap_prov/main/
Dapp_prov.c348 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_softap_provisioning()
/hal_espressif-3.6.0/components/bt/common/osi/
Dalarm.c179 tca.dispatch_method = ESP_TIMER_TASK; in osi_alarm_new()
/hal_espressif-3.6.0/examples/provisioning/legacy/custom_config/main/
Dapp_prov.c362 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_softap_provisioning()
/hal_espressif-3.6.0/components/esp_system/test/
Dtest_sleep.c346 .dispatch_method = ESP_TIMER_TASK, in prepare_wake_stub_from_rtc()
/hal_espressif-3.6.0/components/wpa_supplicant/src/rsn_supp/
Dpmksa_cache.c517 .dispatch_method = ESP_TIMER_TASK, in pmksa_cache_init()
/hal_espressif-3.6.0/components/wifi_provisioning/src/
Dmanager.c1487 .dispatch_method = ESP_TIMER_TASK, in wifi_prov_mgr_start_provisioning()
1503 .dispatch_method = ESP_TIMER_TASK, in wifi_prov_mgr_start_provisioning()
/hal_espressif-3.6.0/components/wpa_supplicant/src/common/
Dmbo.c564 .dispatch_method = ESP_TIMER_TASK, in wpa_bss_tmp_disallow()

12