/lvgl-3.6.0/src/misc/ |
D | lv_log.h | 121 #ifndef LV_LOG_USER 123 # define LV_LOG_USER(...) _lv_log_add(LV_LOG_LEVEL_USER, __FILE__, __LINE__, __func__, __VA_ARGS… macro 125 # define LV_LOG_USER(...) do {}while(0) macro 145 #define LV_LOG_USER(...) do {}while(0) macro
|
/lvgl-3.6.0/examples/widgets/btn/ |
D | lv_example_btn_1.c | 9 LV_LOG_USER("Clicked"); in event_handler() 12 LV_LOG_USER("Toggled"); in event_handler()
|
/lvgl-3.6.0/examples/widgets/msgbox/ |
D | lv_example_msgbox_1.c | 7 LV_LOG_USER("Button %s clicked", lv_msgbox_get_active_btn_text(obj)); in event_cb()
|
/lvgl-3.6.0/examples/widgets/dropdown/ |
D | lv_example_dropdown_1.c | 11 LV_LOG_USER("Option: %s", buf); in event_handler()
|
D | lv_example_dropdown_3.c | 9 LV_LOG_USER("'%s' is selected", buf); in event_cb()
|
/lvgl-3.6.0/examples/widgets/roller/ |
D | lv_example_roller_1.c | 11 LV_LOG_USER("Selected month: %s\n", buf); in event_handler()
|
D | lv_example_roller_2.c | 11 LV_LOG_USER("Selected value: %s", buf); in event_handler()
|
/lvgl-3.6.0/examples/event/ |
D | lv_example_event_1.c | 6 LV_LOG_USER("Clicked"); in event_cb()
|
/lvgl-3.6.0/examples/widgets/btnmatrix/ |
D | lv_example_btnmatrix_1.c | 12 LV_LOG_USER("%s was pressed\n", txt); in event_handler()
|
/lvgl-3.6.0/examples/widgets/win/ |
D | lv_example_win_1.c | 8 LV_LOG_USER("Button %d clicked", (int)lv_obj_get_index(obj)); in event_handler()
|
/lvgl-3.6.0/examples/widgets/switch/ |
D | lv_example_switch_1.c | 9 LV_LOG_USER("State: %s\n", lv_obj_has_state(obj, LV_STATE_CHECKED) ? "On" : "Off"); in event_handler()
|
/lvgl-3.6.0/examples/widgets/calendar/ |
D | lv_example_calendar_1.c | 12 LV_LOG_USER("Clicked date: %02d.%02d.%d", date.day, date.month, date.year); in event_handler()
|
/lvgl-3.6.0/examples/others/gridnav/ |
D | lv_example_gridnav_4.c | 9 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list, obj)); in event_handler()
|
/lvgl-3.6.0/examples/widgets/textarea/ |
D | lv_example_textarea_1.c | 7 LV_LOG_USER("Enter was pressed. The current text is: %s", lv_textarea_get_text(ta)); in textarea_event_handler()
|
D | lv_example_textarea_2.c | 55 LV_LOG_USER("Ready, current text: %s", lv_textarea_get_text(ta)); in ta_event_cb()
|
/lvgl-3.6.0/examples/widgets/checkbox/ |
D | lv_example_checkbox_1.c | 11 LV_LOG_USER("%s: %s", txt, state); in event_handler()
|
D | lv_example_checkbox_2.c | 24 LV_LOG_USER("Selected radio buttons: %d, %d", (int)active_index_1, (int)active_index_2); in radio_event_handler()
|
/lvgl-3.6.0/examples/widgets/list/ |
D | lv_example_list_1.c | 10 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj)); in event_handler()
|
D | lv_example_list_2.c | 17 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj)); in event_handler()
|
/lvgl-3.6.0/examples/widgets/chart/ |
D | lv_example_chart_4.c | 21 LV_LOG_USER("Selected point %d", (int)id); in event_cb()
|
/lvgl-3.6.0/docs/porting/ |
D | log.md | 49 - `LV_LOG(text)` is similar to `LV_LOG_USER` but has no extra information attached.
|
/lvgl-3.6.0/demos/stress/ |
D | lv_demo_stress.c | 51 …LV_LOG_USER("Starting stress test. (< 100 bytes permanent memory leak is normal due to fragmentati… in lv_demo_stress() 92 …LV_LOG_USER("mem leak since start: %d, frag: %3d %%", mem_free_start - mon.free_size, mon.frag_pc… in obj_test_timer_cb()
|