hotlist           146 src/filemanager/hotlist.c     struct hotlist *head;
hotlist           147 src/filemanager/hotlist.c     struct hotlist *up;
hotlist           148 src/filemanager/hotlist.c     struct hotlist *next;
hotlist           203 src/filemanager/hotlist.c static struct hotlist *hotlist = NULL;
hotlist           205 src/filemanager/hotlist.c static struct hotlist *current_group;
hotlist           219 src/filemanager/hotlist.c static void init_movelist (struct hotlist *item);
hotlist           222 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry);
hotlist           247 src/filemanager/hotlist.c             struct hotlist *hlp = (struct hotlist *) cdata;
hotlist           272 src/filemanager/hotlist.c     struct hotlist *current;
hotlist           297 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry)
hotlist           299 src/filemanager/hotlist.c     struct hotlist *current = current_group->head;
hotlist           332 src/filemanager/hotlist.c             struct hotlist *saved = current_group;
hotlist           333 src/filemanager/hotlist.c             struct hotlist *item = NULL;
hotlist           334 src/filemanager/hotlist.c             struct hotlist *moveto_item = NULL;
hotlist           335 src/filemanager/hotlist.c             struct hotlist *moveto_group = NULL;
hotlist           362 src/filemanager/hotlist.c                 struct hotlist *p = moveto_group->head;
hotlist           386 src/filemanager/hotlist.c                 struct hotlist *p = moveto_group->head;
hotlist           401 src/filemanager/hotlist.c             struct hotlist *entry = NULL;
hotlist           425 src/filemanager/hotlist.c             struct hotlist *hlp;
hotlist           433 src/filemanager/hotlist.c             hlp = (struct hotlist *) data;
hotlist           536 src/filemanager/hotlist.c                 struct hotlist *hlp = (struct hotlist *) ldata;
hotlist           635 src/filemanager/hotlist.c             struct hotlist *hlp = (struct hotlist *) data;
hotlist           831 src/filemanager/hotlist.c init_movelist (struct hotlist *item)
hotlist           901 src/filemanager/hotlist.c find_group_section (struct hotlist *grp)
hotlist           908 src/filemanager/hotlist.c static struct hotlist *
hotlist           911 src/filemanager/hotlist.c     struct hotlist *new;
hotlist           912 src/filemanager/hotlist.c     struct hotlist *current = NULL;
hotlist           927 src/filemanager/hotlist.c     new = g_new0 (struct hotlist, 1);
hotlist           959 src/filemanager/hotlist.c         struct hotlist *p = current_group->head;
hotlist           969 src/filemanager/hotlist.c         struct hotlist *p = current_group->head;
hotlist          1115 src/filemanager/hotlist.c remove_group (struct hotlist *grp)
hotlist          1117 src/filemanager/hotlist.c     struct hotlist *current = grp->head;
hotlist          1121 src/filemanager/hotlist.c         struct hotlist *next = current->next;
hotlist          1137 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry)
hotlist          1163 src/filemanager/hotlist.c         struct hotlist *head = entry->head;
hotlist          1194 src/filemanager/hotlist.c load_group (struct hotlist *grp)
hotlist          1198 src/filemanager/hotlist.c     struct hotlist *current = 0;
hotlist          1319 src/filemanager/hotlist.c hot_load_group (struct hotlist *grp)
hotlist          1322 src/filemanager/hotlist.c     struct hotlist *new_grp;
hotlist          1373 src/filemanager/hotlist.c hot_load_file (struct hotlist *grp)
hotlist          1376 src/filemanager/hotlist.c     struct hotlist *new_grp;
hotlist          1465 src/filemanager/hotlist.c     hotlist = g_new0 (struct hotlist, 1);
hotlist          1466 src/filemanager/hotlist.c     hotlist->type = HL_TYPE_GROUP;
hotlist          1467 src/filemanager/hotlist.c     hotlist->label = g_strdup (_("Top level group"));
hotlist          1468 src/filemanager/hotlist.c     hotlist->up = hotlist;
hotlist          1472 src/filemanager/hotlist.c     hotlist->directory = g_strdup ("Hotlist");
hotlist          1479 src/filemanager/hotlist.c         load_group (hotlist);
hotlist          1497 src/filemanager/hotlist.c         hot_load_file (hotlist);
hotlist          1515 src/filemanager/hotlist.c     current_group = hotlist;
hotlist          1521 src/filemanager/hotlist.c hot_save_group (struct hotlist *grp)
hotlist          1523 src/filemanager/hotlist.c     struct hotlist *current;
hotlist          1586 src/filemanager/hotlist.c     if (current_group != hotlist && hotlist_has_dot_dot)
hotlist          1656 src/filemanager/hotlist.c         struct hotlist *hlp = NULL;
hotlist          1683 src/filemanager/hotlist.c             hot_save_group (hotlist);
hotlist          1704 src/filemanager/hotlist.c     if (hotlist != NULL)
hotlist          1706 src/filemanager/hotlist.c         remove_group (hotlist);
hotlist          1707 src/filemanager/hotlist.c         g_free (hotlist->label);
hotlist          1708 src/filemanager/hotlist.c         g_free (hotlist->directory);
hotlist          1709 src/filemanager/hotlist.c         MC_PTR_FREE (hotlist);