dir_process       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))
dir_process       393 modules/file_shelter.c         if (dir_process)
dir_process       394 modules/file_shelter.c             dir_process(path, &de);
dir_process       405 modules/file_shelter.c                         process_dir(path, de.de->d_name, nested-1, file_process, dir_process);
dir_process       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))
dir_process       551 modules/gui_fselect.c                         process_dir(path, de.de->d_name, nested-1, file_process, dir_process);
dir_process       561 modules/gui_fselect.c         if (dir_process)
dir_process       562 modules/gui_fselect.c             dir_process(path);