/hal_espressif-3.6.0/components/esp_timer/src/ |
D | esp_timer.c | 135 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 …]
|
D | ets_timer_legacy.c | 68 .dispatch_method = ESP_TIMER_TASK in ets_timer_setfn()
|
/hal_espressif-3.6.0/components/touch_element/ |
D | touch_button.c | 40 …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 …]
|
D | touch_matrix.c | 43 …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 …]
|
D | touch_slider.c | 50 …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/ |
D | touch_element_private.h | 92 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
|
D | touch_button.h | 152 …on_set_dispatch_method(touch_button_handle_t button_handle, touch_elem_dispatch_t dispatch_method);
|
D | touch_matrix.h | 170 …ix_set_dispatch_method(touch_matrix_handle_t matrix_handle, touch_elem_dispatch_t dispatch_method);
|
D | touch_slider.h | 170 …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/ |
D | test_esp_timer.c | 950 .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/ |
D | button.c | 300 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/ |
D | esp_timer.h | 30 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/ |
D | esp_timer_cxx.cpp | 37 timer_args.dispatch_method = ESP_TIMER_TASK; in ESPTimer()
|
/hal_espressif-3.6.0/components/esp_timer/include/ |
D | esp_timer.h | 73 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/ |
D | app_prov.c | 297 .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/ |
D | run_tc.c | 63 .dispatch_method = ESP_TIMER_TASK, in create_statistic_timer()
|
D | sync.c | 497 .dispatch_method = ESP_TIMER_TASK, in create_sync_timer()
|
/hal_espressif-3.6.0/examples/provisioning/legacy/ble_prov/main/ |
D | app_prov.c | 359 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_ble_provisioning()
|
/hal_espressif-3.6.0/examples/provisioning/legacy/softap_prov/main/ |
D | app_prov.c | 348 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_softap_provisioning()
|
/hal_espressif-3.6.0/components/bt/common/osi/ |
D | alarm.c | 179 tca.dispatch_method = ESP_TIMER_TASK; in osi_alarm_new()
|
/hal_espressif-3.6.0/examples/provisioning/legacy/custom_config/main/ |
D | app_prov.c | 362 .dispatch_method = ESP_TIMER_TASK, in app_prov_start_softap_provisioning()
|
/hal_espressif-3.6.0/components/esp_system/test/ |
D | test_sleep.c | 346 .dispatch_method = ESP_TIMER_TASK, in prepare_wake_stub_from_rtc()
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/rsn_supp/ |
D | pmksa_cache.c | 517 .dispatch_method = ESP_TIMER_TASK, in pmksa_cache_init()
|
/hal_espressif-3.6.0/components/wifi_provisioning/src/ |
D | manager.c | 1487 .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/ |
D | mbo.c | 564 .dispatch_method = ESP_TIMER_TASK, in wpa_bss_tmp_disallow()
|