Searched refs:current_path (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/env_support/rt-thread/ |
D | SConscript | 30 current_path = os.path.join(root, dir) 31 …if current_path == os.path.join(lvgl_src_cwd, 'libs', 'thorvg', 'rapidjson', 'msinttypes'): # excl… 33 src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files 34 if check_h_hpp_exists(current_path): # add .h and .hpp path 35 inc = inc + [current_path] 43 current_path = os.path.join(root, dir) 44 src = src + Glob(os.path.join(current_path,'*.c')) 45 if check_h_hpp_exists(current_path): 46 inc = inc + [current_path] 53 current_path = os.path.join(root, dir) [all …]
|
/lvgl-latest/env_support/rt-thread/squareline/ |
D | SConscript | 18 current_path = os.path.join(root, dir) 19 src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files 20 if check_h_hpp_exists(current_path): # add .h and .hpp path 21 inc = inc + [current_path]
|
/lvgl-latest/src/others/file_explorer/ |
D | lv_file_explorer.c | 162 return explorer->current_path; in lv_file_explorer_get_current_path() 262 lv_memzero(explorer->current_path, sizeof(explorer->current_path)); in lv_file_explorer_constructor() 513 if((navigate_to_parent_dir) && (lv_strlen(explorer->current_path) > 3)) { in browser_file_event_handler() 514 strip_ext(explorer->current_path); in browser_file_event_handler() 516 strip_ext(explorer->current_path); in browser_file_event_handler() 517 …lv_snprintf((char *)file_name, sizeof(file_name), "%s/", explorer->current_path); /* Append / at t… in browser_file_event_handler() 521 … lv_snprintf((char *)file_name, sizeof(file_name), "%s%s", explorer->current_path, selected_text); in browser_file_event_handler() 622 lv_strncpy(explorer->current_path, path, sizeof(explorer->current_path)); in show_dir() 625 size_t current_path_len = lv_strlen(explorer->current_path); in show_dir() 626 …if((explorer->current_path[current_path_len - 1] != '/') && (current_path_len < LV_FILE_EXPLORER_P… in show_dir() [all …]
|
D | lv_file_explorer_private.h | 50 char current_path[LV_FILE_EXPLORER_PATH_MAX_LEN]; member
|
/lvgl-latest/tests/unity/ |
D | unity_support.c | 495 char current_path[1024] = {'\0'}; // Adjust the size as needed in create_folders_if_needed() local 498 strcat(current_path, token); in create_folders_if_needed() 499 strcat(current_path, "/"); in create_folders_if_needed() 501 int mkdir_retval = mkdir(current_path, 0777); in create_folders_if_needed() 503 printf("Created folder: %s\n", current_path); in create_folders_if_needed()
|
/lvgl-latest/docs/details/other-components/ |
D | file_explorer.rst | 66 The size of the ``current_path`` buffer is set by :c:macro:`LV_FILE_EXPLORER_PATH_MAX_LEN` 105 - ``current_path`` = [empty buffer] 118 - :cpp:expr:`lv_file_explorer_get_current_path(explorer)` (pointer to ``current_path`` ``char`` buf…
|