Searched refs:file (Results 1 – 10 of 10) sorted by relevance
/lvgl-2.7.6/src/lv_misc/ |
D | lv_log.c | 66 void _lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char *… in _lv_log_add() argument 80 for(p = strlen(file); p > 0; p--) { in _lv_log_add() 81 if(file[p] == '/' || file[p] == '\\') { in _lv_log_add() 88 printf("%s: %s \t(%s #%d %s())\n", lvl_prefix[level], buf, &file[p], line, func); in _lv_log_add() 90 if(custom_print_cb) custom_print_cb(level, file, line, func, buf); in _lv_log_add()
|
D | lv_log.h | 73 void _lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char *… 112 #define _lv_log_add(level, file, line, ...) argument
|
/lvgl-2.7.6/scripts/ |
D | Doxyfile | 3 # This file describes the settings to be used by the documentation system 20 # This tag specifies the encoding used for all characters in the config file 68 # performance problems for the file system. 97 # descriptions after the members that are listed in the file and class 118 # the entity):The $name class, The $name widget, The $name file, is, provides, 123 "The $name file" \ 149 # before files name in the file list and in the header files. If set to NO the 150 # shortest path that makes the file name unique will be used 157 # part of the path. The tag can be used to show relative paths in the file list. 169 # header file to include in order to use a class. If left blank only the name of [all …]
|
D | cppcheck_run.sh | 1 …{severity}\t{file}:{line}\t{id}: {message}" --enable=all ../src/ --output-file=cppcheck_res.txt --…
|
D | lv_conf_checker.py | 12 print("Python >=3.6 is required", file=sys.stderr)
|
/lvgl-2.7.6/examples/ |
D | LVGL_Arduino.ino | 10 void my_print(lv_log_level_t level, const char * file, uint32_t line, const char * dsc) 13 Serial.printf("%s@%d->%s\r\n", file, line, dsc);
|
/lvgl-2.7.6/src/lv_font/ |
D | lv_font_loader.c | 96 lv_fs_file_t file; in lv_font_load() local 97 lv_fs_res_t res = lv_fs_open(&file, font_name, LV_FS_MODE_RD); in lv_font_load() 100 success = lvgl_load_font(&file, font); in lv_font_load() 114 lv_fs_close(&file); in lv_font_load()
|
/lvgl-2.7.6/src/lv_draw/ |
D | lv_img_decoder.c | 280 lv_fs_file_t file; in lv_img_decoder_built_in_info() local 283 res = lv_fs_open(&file, src, LV_FS_MODE_RD); in lv_img_decoder_built_in_info() 285 res = lv_fs_read(&file, header, sizeof(lv_img_header_t), &rn); in lv_img_decoder_built_in_info() 286 lv_fs_close(&file); in lv_img_decoder_built_in_info()
|
/lvgl-2.7.6/docs/ |
D | CODING_STYLE.md | 32 * Variables in a file (outside functions) are always *static*
|
/lvgl-2.7.6/ |
D | CHANGELOG.md | 44 - Add `lv_font_load()` function - Loads a `lv_font_t` object from a binary font file
|