nested            370 modules/file_shelter.c static void process_dir(const char *parent, const char *name, int nested, void (*file_process)(const char *path, const char *file, fs_dirent *de), void (*dir_process)(const char *path, fs_dirent *de))
nested            404 modules/file_shelter.c                     if (!de.isparent && !de.iscurrent && nested)
nested            405 modules/file_shelter.c                         process_dir(path, de.de->d_name, nested-1, file_process, dir_process);
nested            520 modules/gui_fselect.c static void process_dir(const char *parent, const char *name, int nested, void (*file_process)(const char *path, const char *file), void (*dir_process)(const char *path))
nested            550 modules/gui_fselect.c                     if (!de.isparent && !de.iscurrent && nested)
nested            551 modules/gui_fselect.c                         process_dir(path, de.de->d_name, nested-1, file_process, dir_process);
nested            942 modules/gui_fselect.c static int find_jpg(const char *folder, const char *match, int nested)
nested            961 modules/gui_fselect.c                     if (!de.isparent && !de.iscurrent && nested)
nested            966 modules/gui_fselect.c                         if (find_jpg(path, match, nested-1))