hotlist           147 src/filemanager/hotlist.c     struct hotlist *head;
hotlist           148 src/filemanager/hotlist.c     struct hotlist *up;
hotlist           149 src/filemanager/hotlist.c     struct hotlist *next;
hotlist           202 src/filemanager/hotlist.c static struct hotlist *hotlist = NULL;
hotlist           204 src/filemanager/hotlist.c static struct hotlist *current_group;
hotlist           218 src/filemanager/hotlist.c static void init_movelist (struct hotlist *item);
hotlist           221 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry);
hotlist           246 src/filemanager/hotlist.c             struct hotlist *hlp = (struct hotlist *) cdata;
hotlist           271 src/filemanager/hotlist.c     struct hotlist *current;
hotlist           296 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry)
hotlist           298 src/filemanager/hotlist.c     struct hotlist *current = current_group->head;
hotlist           331 src/filemanager/hotlist.c         struct hotlist *saved = current_group;
hotlist           332 src/filemanager/hotlist.c         struct hotlist *item = NULL;
hotlist           333 src/filemanager/hotlist.c         struct hotlist *moveto_item = NULL;
hotlist           334 src/filemanager/hotlist.c         struct hotlist *moveto_group = NULL;
hotlist           361 src/filemanager/hotlist.c             struct hotlist *p = moveto_group->head;
hotlist           385 src/filemanager/hotlist.c             struct hotlist *p = moveto_group->head;
hotlist           400 src/filemanager/hotlist.c         struct hotlist *entry = NULL;
hotlist           424 src/filemanager/hotlist.c         struct hotlist *hlp;
hotlist           432 src/filemanager/hotlist.c         hlp = (struct hotlist *) data;
hotlist           535 src/filemanager/hotlist.c                 struct hotlist *hlp = (struct hotlist *) ldata;
hotlist           634 src/filemanager/hotlist.c             struct hotlist *hlp = (struct hotlist *) data;
hotlist           828 src/filemanager/hotlist.c init_movelist (struct hotlist *item)
hotlist           896 src/filemanager/hotlist.c find_group_section (struct hotlist *grp)
hotlist           903 src/filemanager/hotlist.c static struct hotlist *
hotlist           906 src/filemanager/hotlist.c     struct hotlist *new;
hotlist           907 src/filemanager/hotlist.c     struct hotlist *current = NULL;
hotlist           922 src/filemanager/hotlist.c     new = g_new0 (struct hotlist, 1);
hotlist           954 src/filemanager/hotlist.c         struct hotlist *p = current_group->head;
hotlist           964 src/filemanager/hotlist.c         struct hotlist *p = current_group->head;
hotlist          1113 src/filemanager/hotlist.c remove_group (struct hotlist *grp)
hotlist          1115 src/filemanager/hotlist.c     struct hotlist *current = grp->head;
hotlist          1119 src/filemanager/hotlist.c         struct hotlist *next = current->next;
hotlist          1135 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry)
hotlist          1161 src/filemanager/hotlist.c         struct hotlist *head = entry->head;
hotlist          1192 src/filemanager/hotlist.c load_group (struct hotlist *grp)
hotlist          1196 src/filemanager/hotlist.c     struct hotlist *current = 0;
hotlist          1317 src/filemanager/hotlist.c hot_load_group (struct hotlist *grp)
hotlist          1320 src/filemanager/hotlist.c     struct hotlist *new_grp;
hotlist          1370 src/filemanager/hotlist.c hot_load_file (struct hotlist *grp)
hotlist          1373 src/filemanager/hotlist.c     struct hotlist *new_grp;
hotlist          1461 src/filemanager/hotlist.c     hotlist = g_new0 (struct hotlist, 1);
hotlist          1462 src/filemanager/hotlist.c     hotlist->type = HL_TYPE_GROUP;
hotlist          1463 src/filemanager/hotlist.c     hotlist->label = g_strdup (_ ("Top level group"));
hotlist          1464 src/filemanager/hotlist.c     hotlist->up = hotlist;
hotlist          1468 src/filemanager/hotlist.c     hotlist->directory = g_strdup ("Hotlist");
hotlist          1475 src/filemanager/hotlist.c         load_group (hotlist);
hotlist          1493 src/filemanager/hotlist.c         hot_load_file (hotlist);
hotlist          1511 src/filemanager/hotlist.c     current_group = hotlist;
hotlist          1517 src/filemanager/hotlist.c hot_save_group (struct hotlist *grp)
hotlist          1519 src/filemanager/hotlist.c     struct hotlist *current;
hotlist          1584 src/filemanager/hotlist.c     if (current_group != hotlist && hotlist_has_dot_dot)
hotlist          1653 src/filemanager/hotlist.c         struct hotlist *hlp = NULL;
hotlist          1680 src/filemanager/hotlist.c             hot_save_group (hotlist);
hotlist          1701 src/filemanager/hotlist.c     if (hotlist != NULL)
hotlist          1703 src/filemanager/hotlist.c         remove_group (hotlist);
hotlist          1704 src/filemanager/hotlist.c         g_free (hotlist->label);
hotlist          1705 src/filemanager/hotlist.c         g_free (hotlist->directory);
hotlist          1706 src/filemanager/hotlist.c         MC_PTR_FREE (hotlist);