Home
last modified time | relevance | path

Searched defs:drv (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/src/drivers/display/lcd/
Dlv_lcd_generic_mipi.c56 …lv_lcd_generic_mipi_driver_t * drv = (lv_lcd_generic_mipi_driver_t *)lv_malloc(sizeof(lv_lcd_gener… in lv_lcd_generic_mipi_create() local
82 lv_lcd_generic_mipi_driver_t * drv = get_driver(disp); in lv_lcd_generic_mipi_set_gap() local
89 lv_lcd_generic_mipi_driver_t * drv = get_driver(disp); in lv_lcd_generic_mipi_set_invert() local
95 lv_lcd_generic_mipi_driver_t * drv = get_driver(disp); in lv_lcd_generic_mipi_set_address_mode() local
109 lv_lcd_generic_mipi_driver_t * drv = get_driver(disp); in lv_lcd_generic_mipi_set_gamma_curve() local
117 lv_lcd_generic_mipi_driver_t * drv = get_driver(disp); in lv_lcd_generic_mipi_send_cmd_list() local
146 static void send_cmd(lv_lcd_generic_mipi_driver_t * drv, uint8_t cmd, uint8_t * param, size_t param… in send_cmd()
159 static void send_color(lv_lcd_generic_mipi_driver_t * drv, uint8_t cmd, uint8_t * param, size_t par… in send_color()
169 static void init(lv_lcd_generic_mipi_driver_t * drv, lv_lcd_flag_t flags) in init()
215 static void set_mirror(lv_lcd_generic_mipi_driver_t * drv, bool mirror_x, bool mirror_y) in set_mirror()
[all …]
/lvgl-latest/src/libs/fsdrv/
Dlv_fs_fatfs.c108 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
140 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
158 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
175 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
192 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
219 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
232 static void * fs_dir_open(lv_fs_drv_t * drv, const char * path) in fs_dir_open()
258 static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * dir_p, char * fn, uint32_t fn_len) in fs_dir_read()
289 static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p) in fs_dir_close()
Dlv_fs_stdio.c107 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
132 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
149 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
165 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
180 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
210 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
223 static void * fs_dir_open(lv_fs_drv_t * drv, const char * path) in fs_dir_open()
279 static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * dir_p, char * fn, uint32_t fn_len) in fs_dir_read()
330 static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p) in fs_dir_close()
Dlv_fs_memfs.c123 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
137 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
154 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
172 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
206 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
Dlv_fs_posix.c106 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
135 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
159 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
183 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
206 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
242 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
263 static void * fs_dir_open(lv_fs_drv_t * drv, const char * path) in fs_dir_open()
289 static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * dir_p, char * fn, uint32_t fn_len) in fs_dir_read()
315 static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p) in fs_dir_close()
Dlv_fs_win32.c209 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
245 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
263 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
280 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
296 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
326 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
363 static void * fs_dir_open(lv_fs_drv_t * drv, const char * path) in fs_dir_open()
415 static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * dir_p, char * fn, uint32_t fn_len) in fs_dir_read()
455 static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p) in fs_dir_close()
Dlv_fs_littlefs.c34 lv_fs_drv_t * drv = lv_fs_get_drv(LV_FS_LITTLEFS_LETTER); in lv_littlefs_set_handler() local
72 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
103 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
123 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
142 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
160 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
185 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
201 static void * fs_dir_open(lv_fs_drv_t * drv, const char * path) in fs_dir_open()
225 static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p) in fs_dir_close()
246 static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * dir_p, char * fn, uint32_t fn_len) in fs_dir_read()
Dlv_fs_arduino_sd.cpp60 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
91 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
110 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
128 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
145 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
170 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
Dlv_fs_arduino_esp_littlefs.cpp68 static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in fs_open()
99 static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p) in fs_close()
118 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read()
136 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write()
153 static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence) in fs_seek()
178 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell()
Dlv_fs_uefi.c116 static bool lv_fs_uefi_ready_cb(lv_fs_drv_t * drv) in lv_fs_uefi_ready_cb()
123 static void * lv_fs_uefi_open_cb(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode) in lv_fs_uefi_open_cb()
194 static lv_fs_res_t lv_fs_uefi_close_cb(lv_fs_drv_t * drv, void * file_p) in lv_fs_uefi_close_cb()
209 static lv_fs_res_t lv_fs_uefi_read_cb(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, u… in lv_fs_uefi_read_cb()
228 static lv_fs_res_t lv_fs_uefi_write_cb(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t… in lv_fs_uefi_write_cb()
249 static lv_fs_res_t lv_fs_uefi_seek_cb(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_… in lv_fs_uefi_seek_cb()
298 static lv_fs_res_t lv_fs_uefi_tell_cb(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in lv_fs_uefi_tell_cb()
318 static void * lv_fs_uefi_dir_open_cb(lv_fs_drv_t * drv, const char * path) in lv_fs_uefi_dir_open_cb()
394 static lv_fs_res_t lv_fs_uefi_dir_read_cb(lv_fs_drv_t * drv, void * rddir_p, char * fn, uint32_t fn… in lv_fs_uefi_dir_read_cb()
476 static lv_fs_res_t lv_fs_uefi_dir_close_cb(lv_fs_drv_t * drv, void * rddir_p) in lv_fs_uefi_dir_close_cb()
[all …]
/lvgl-latest/src/misc/
Dlv_fs.c67 lv_fs_drv_t * drv = lv_fs_get_drv(letter); in lv_fs_is_ready() local
85 lv_fs_drv_t * drv = lv_fs_get_drv(resolved_path.driver_letter); in lv_fs_open() local
310 lv_fs_drv_t * drv = lv_fs_get_drv(resolved_path.driver_letter); in lv_fs_dir_open() local
390 void lv_fs_drv_init(lv_fs_drv_t * drv) in lv_fs_drv_init()
408 lv_fs_drv_t ** drv; in lv_fs_get_drv() local
421 lv_fs_drv_t ** drv; in lv_fs_get_letters() local
Dlv_fs.h90 lv_fs_drv_t * drv; member
97 lv_fs_drv_t * drv; member
/lvgl-latest/src/drivers/nuttx/
Dlv_nuttx_touchscreen.c119 static void conv_touch_sample(lv_indev_t * drv, in conv_touch_sample()
146 static void touchscreen_read(lv_indev_t * drv, lv_indev_data_t * data) in touchscreen_read()
/lvgl-latest/tests/src/test_cases/
Dtest_fs.c121 lv_fs_drv_t * drv = lv_fs_get_drv(drv_letter); in read_random_drv() local
184 lv_fs_drv_t * drv = lv_fs_get_drv('A'); in test_write_read_random() local
/lvgl-latest/src/drivers/wayland/
Dlv_wayland.c2341 static void _lv_wayland_pointer_read(lv_indev_t * drv, lv_indev_data_t * data) in _lv_wayland_pointer_read()
2354 static void _lv_wayland_pointeraxis_read(lv_indev_t * drv, lv_indev_data_t * data) in _lv_wayland_pointeraxis_read()
2368 static void _lv_wayland_keyboard_read(lv_indev_t * drv, lv_indev_data_t * data) in _lv_wayland_keyboard_read()
2381 static void _lv_wayland_touch_read(lv_indev_t * drv, lv_indev_data_t * data) in _lv_wayland_touch_read()