re                828 src/filemanager/mountlist.c                     struct rootdir_entry *re = g_malloc (sizeof (*re));
re                829 src/filemanager/mountlist.c                     re->name = name;
re                830 src/filemanager/mountlist.c                     re->dev = statbuf.st_dev;
re                831 src/filemanager/mountlist.c                     re->ino = statbuf.st_ino;
re                834 src/filemanager/mountlist.c                     *rootdir_tail = re;
re                835 src/filemanager/mountlist.c                     rootdir_tail = &re->next;
re                848 src/filemanager/mountlist.c                 struct rootdir_entry *re;
re                850 src/filemanager/mountlist.c                 for (re = rootdir_list; re; re = re->next)
re                851 src/filemanager/mountlist.c                     if (re->dev == fi.dev && re->ino == fi.root)
re                857 src/filemanager/mountlist.c                 me->me_mountdir = g_strdup (re != NULL ? re->name : fi.fsh_name);
re                870 src/filemanager/mountlist.c             struct rootdir_entry *re = rootdir_list;
re                872 src/filemanager/mountlist.c             rootdir_list = re->next;
re                873 src/filemanager/mountlist.c             g_free (re->name);
re                874 src/filemanager/mountlist.c             g_free (re);