Searched refs:s_te_sld_obj (Results 1 – 1 of 1) sorted by relevance
38 te_slider_obj_t *s_te_sld_obj = NULL; variable65 s_te_sld_obj = (te_slider_obj_t *)calloc(1, sizeof(te_slider_obj_t)); in touch_slider_install()66 TE_CHECK(s_te_sld_obj != NULL, ESP_ERR_NO_MEM); in touch_slider_install()67 …s_te_sld_obj->global_config = (touch_slider_global_config_t *)calloc(1, sizeof(touch_slider_global… in touch_slider_install()68 s_te_sld_obj->mutex = xSemaphoreCreateMutex(); in touch_slider_install()69 TE_CHECK_GOTO(s_te_sld_obj->global_config != NULL && s_te_sld_obj->mutex != NULL, cleanup); in touch_slider_install()70 xSemaphoreTake(s_te_sld_obj->mutex, portMAX_DELAY); in touch_slider_install()71 SLIST_INIT(&s_te_sld_obj->handle_list); in touch_slider_install()72 memcpy(s_te_sld_obj->global_config, global_config, sizeof(touch_slider_global_config_t)); in touch_slider_install()74 .handle = s_te_sld_obj, in touch_slider_install()[all …]