entry             132 lib/vfs/direntry.c vfs_s_resolve_symlink (struct vfs_class *me, struct vfs_s_entry *entry, int follow)
entry             139 lib/vfs/direntry.c         return entry;
entry             142 lib/vfs/direntry.c     if (entry == NULL)
entry             144 lib/vfs/direntry.c     if (!S_ISLNK (entry->ino->st.st_mode))
entry             145 lib/vfs/direntry.c         return entry;
entry             147 lib/vfs/direntry.c     linkname = entry->ino->linkname;
entry             156 lib/vfs/direntry.c         fullpath = vfs_s_fullpath (me, entry->dir);
entry             166 lib/vfs/direntry.c         VFS_SUBCLASS (me)->find_entry (me, entry->dir->super->root, linkname, follow - 1, FL_NONE);
entry             926 lib/vfs/direntry.c         struct vfs_s_entry *entry;
entry             928 lib/vfs/direntry.c         entry = VFS_ENTRY (g_queue_peek_head (ino->subdir));
entry             929 lib/vfs/direntry.c         vfs_s_free_entry (me, entry);
entry             951 lib/vfs/direntry.c     struct vfs_s_entry *entry;
entry             953 lib/vfs/direntry.c     entry = g_new0 (struct vfs_s_entry, 1);
entry             955 lib/vfs/direntry.c     entry->name = g_strdup (name);
entry             956 lib/vfs/direntry.c     entry->ino = inode;
entry             957 lib/vfs/direntry.c     entry->ino->ent = entry;
entry             958 lib/vfs/direntry.c     CALL (init_entry) (me, entry);
entry             960 lib/vfs/direntry.c     return entry;
entry            1723 lib/vfs/direntry.c         struct vfs_s_entry *entry = VFS_ENTRY (iter->data);
entry            1725 lib/vfs/direntry.c         if ((size_t) entry->leading_spaces > final_num_spaces)
entry            1729 lib/vfs/direntry.c             source_name = entry->name;
entry            1730 lib/vfs/direntry.c             spacer = g_strnfill ((size_t) entry->leading_spaces - final_num_spaces, ' ');
entry            1731 lib/vfs/direntry.c             entry->name = g_strconcat (spacer, source_name, (char *) NULL);
entry            1736 lib/vfs/direntry.c         entry->leading_spaces = -1;
entry             458 lib/vfs/interface.c     struct vfs_dirent *entry = NULL;
entry             476 lib/vfs/interface.c         entry = vfs->readdir (vfs_path_element->dir.info);
entry             477 lib/vfs/interface.c         if (entry == NULL)
entry             482 lib/vfs/interface.c         str_vfs_convert_from (vfs_path_element->dir.converter, entry->d_name, vfs_str_buffer);
entry             484 lib/vfs/interface.c         g_string_assign (vfs_str_buffer, entry->d_name);
entry             486 lib/vfs/interface.c         vfs_dirent_assign (mc_readdir_result, vfs_str_buffer->str, entry->d_ino);
entry             487 lib/vfs/interface.c         vfs_dirent_free (entry);
entry             489 lib/vfs/interface.c     if (entry == NULL)
entry             491 lib/vfs/interface.c     return (entry != NULL) ? mc_readdir_result : NULL;
entry             126 lib/vfs/xdirentry.h     int (*init_entry) (struct vfs_class * me, struct vfs_s_entry * entry);      /* optional */
entry             175 lib/vfs/xdirentry.h struct vfs_s_inode *vfs_s_find_root (struct vfs_class *me, struct vfs_s_entry *entry);
entry             200 lib/vfs/xdirentry.h vfs_s_store_filename_leading_spaces (struct vfs_s_entry *entry, size_t position)
entry             202 lib/vfs/xdirentry.h     entry->leading_spaces = (ssize_t) position;
entry             144 lib/widget/input_complete.c     struct vfs_dirent *entry = NULL;
entry             204 lib/widget/input_complete.c     while (directory != NULL && (entry = mc_readdir (directory)) != NULL)
entry             206 lib/widget/input_complete.c         if (!str_is_valid_string (entry->d_name))
entry             213 lib/widget/input_complete.c             if (DIR_IS_DOT (entry->d_name) || DIR_IS_DOTDOT (entry->d_name))
entry             220 lib/widget/input_complete.c             if ((entry->d_name[0] != filename[0]) ||
entry             221 lib/widget/input_complete.c                 ((NLENGTH (entry)) < filename_len) ||
entry             222 lib/widget/input_complete.c                 strncmp (filename, entry->d_name, filename_len) != 0)
entry             233 lib/widget/input_complete.c             tmp_vpath = vfs_path_build_filename (dirname, entry->d_name, (char *) NULL);
entry             271 lib/widget/input_complete.c     if (entry == NULL)
entry             299 lib/widget/input_complete.c         g_string_append (temp, entry->d_name);
entry             314 lib/widget/input_complete.c     static struct passwd *entry = NULL;
entry             328 lib/widget/input_complete.c     while ((entry = getpwent ()) != NULL)
entry             333 lib/widget/input_complete.c         if (text[1] == entry->pw_name[0] && strncmp (text + 1, entry->pw_name, userlen) == 0)
entry             337 lib/widget/input_complete.c     if (entry != NULL)
entry             338 lib/widget/input_complete.c         return g_strconcat ("~", entry->pw_name, PATH_SEP_STR, (char *) NULL);
entry             813 lib/widget/listbox.c     WLEntry *entry;
entry             821 lib/widget/listbox.c     entry = g_new (WLEntry, 1);
entry             822 lib/widget/listbox.c     entry->text = g_strdup (text);
entry             823 lib/widget/listbox.c     entry->data = data;
entry             824 lib/widget/listbox.c     entry->free_data = free_data;
entry             825 lib/widget/listbox.c     entry->hotkey = hotkey;
entry             827 lib/widget/listbox.c     listbox_add_entry (l, entry, pos);
entry             829 lib/widget/listbox.c     return entry->text;
entry              97 lib/widget/menu.c             menu_entry_t *entry = MENUENTRY (i->data);
entry              99 lib/widget/menu.c             if (entry != NULL)
entry             103 lib/widget/menu.c                 len = (size_t) hotkey_width (entry->text);
entry             107 lib/widget/menu.c                     entry->shortcut = get_shortcut (entry->command);
entry             109 lib/widget/menu.c                 if (entry->shortcut != NULL)
entry             111 lib/widget/menu.c                     len = (size_t) str_term_width1 (entry->shortcut);
entry             128 lib/widget/menu.c     const menu_entry_t *entry = MENUENTRY (g_list_nth_data (menu->entries, idx));
entry             135 lib/widget/menu.c     if (entry == NULL)
entry             153 lib/widget/menu.c         tty_print_char ((unsigned char) entry->first_letter);
entry             156 lib/widget/menu.c         tty_print_string (entry->text.start);
entry             158 lib/widget/menu.c         if (entry->text.hotkey != NULL)
entry             161 lib/widget/menu.c             tty_print_string (entry->text.hotkey);
entry             165 lib/widget/menu.c         if (entry->text.end != NULL)
entry             166 lib/widget/menu.c             tty_print_string (entry->text.end);
entry             168 lib/widget/menu.c         if (entry->shortcut != NULL)
entry             171 lib/widget/menu.c             tty_print_string (entry->shortcut);
entry             355 lib/widget/menu.c     const menu_entry_t *entry = MENUENTRY (g_list_nth_data (menu->entries, menu->current));
entry             357 lib/widget/menu.c     if ((entry != NULL) && (entry->command != CK_IgnoreKey))
entry             363 lib/widget/menu.c         send_message (w->owner, w, MSG_ACTION, entry->command, NULL);
entry             375 lib/widget/menu.c     menu_entry_t *entry;
entry             382 lib/widget/menu.c         entry = MENUENTRY (g_list_nth_data (menu->entries, menu->current));
entry             384 lib/widget/menu.c     while ((entry == NULL) || (entry->command == CK_IgnoreKey));
entry             396 lib/widget/menu.c     menu_entry_t *entry;
entry             406 lib/widget/menu.c         entry = MENUENTRY (g_list_nth_data (menu->entries, menu->current));
entry             408 lib/widget/menu.c     while ((entry == NULL) || (entry->command == CK_IgnoreKey));
entry             431 lib/widget/menu.c             menu_entry_t *entry;
entry             433 lib/widget/menu.c             entry = MENUENTRY (g_list_nth_data (menu->entries, menu->current));
entry             435 lib/widget/menu.c             if ((entry == NULL) || (entry->command == CK_IgnoreKey))
entry             459 lib/widget/menu.c         menu_entry_t *entry;
entry             471 lib/widget/menu.c             entry = MENUENTRY (g_list_nth_data (menu->entries, menu->current));
entry             473 lib/widget/menu.c         while ((entry == NULL) || (entry->command == CK_IgnoreKey));
entry             517 lib/widget/menu.c         const menu_entry_t *entry = MENUENTRY (i->data);
entry             519 lib/widget/menu.c         if (entry != NULL && entry->text.hotkey != NULL
entry             520 lib/widget/menu.c             && hotkey == g_ascii_tolower (entry->text.hotkey[0]))
entry             759 lib/widget/menu.c     menu_entry_t *entry;
entry             763 lib/widget/menu.c     entry = MENUENTRY (g_list_nth_data (menu->entries, y));
entry             765 lib/widget/menu.c     if (entry != NULL && entry->command != CK_IgnoreKey)
entry             894 lib/widget/menu.c     menu_entry_t *entry;
entry             896 lib/widget/menu.c     entry = g_new (menu_entry_t, 1);
entry             897 lib/widget/menu.c     entry->first_letter = ' ';
entry             898 lib/widget/menu.c     entry->text = hotkey_new (name);
entry             899 lib/widget/menu.c     entry->command = command;
entry             900 lib/widget/menu.c     entry->shortcut = NULL;
entry             902 lib/widget/menu.c     return entry;
entry             908 lib/widget/menu.c menu_entry_free (menu_entry_t * entry)
entry             910 lib/widget/menu.c     if (entry != NULL)
entry             912 lib/widget/menu.c         hotkey_free (entry->text);
entry             913 lib/widget/menu.c         g_free (entry->shortcut);
entry             914 lib/widget/menu.c         g_free (entry);
entry             367 src/editor/spell.c     const AspellDictInfo *entry;
entry             377 src/editor/spell.c     while ((entry = mc_aspell_dict_info_enumeration_next (elem)) != NULL)
entry             378 src/editor/spell.c         if (entry->name != NULL)
entry             380 src/editor/spell.c             g_ptr_array_add (lang_list, g_strdup (entry->name));
entry            1251 src/filemanager/cmd.c     const file_entry_t *entry;
entry            1253 src/filemanager/cmd.c     entry = panel_current_entry (panel);
entry            1254 src/filemanager/cmd.c     if ((S_ISDIR (entry->st.st_mode) && DIR_IS_DOTDOT (entry->fname->str)) || panel->dirs_marked)
entry            1265 src/filemanager/cmd.c     file_entry_t *entry;
entry            1267 src/filemanager/cmd.c     entry = panel_current_entry (panel);
entry            1269 src/filemanager/cmd.c     if (S_ISDIR (entry->st.st_mode) && !DIR_IS_DOTDOT (entry->fname->str))
entry            1277 src/filemanager/cmd.c         p = vfs_path_from_str (entry->fname->str);
entry            1285 src/filemanager/cmd.c             entry->st.st_size = (off_t) total;
entry            1286 src/filemanager/cmd.c             entry->f.dir_size_computed = 1;
entry            1817 src/filemanager/find.c         GList *entry;
entry            1825 src/filemanager/find.c         for (entry = listbox_get_first_link (find_list); entry != NULL && ok;
entry            1826 src/filemanager/find.c              entry = g_list_next (entry))
entry            1829 src/filemanager/find.c             WLEntry *le = LENTRY (entry->data);
entry             223 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry);
entry             304 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry)
entry             308 src/filemanager/hotlist.c     if (current == entry)
entry             309 src/filemanager/hotlist.c         current_group->head = entry->next;
entry             312 src/filemanager/hotlist.c         while (current != NULL && current->next != entry)
entry             315 src/filemanager/hotlist.c             current->next = entry->next;
entry             317 src/filemanager/hotlist.c     entry->next = entry->up = NULL;
entry             408 src/filemanager/hotlist.c             struct hotlist *entry = NULL;
entry             410 src/filemanager/hotlist.c             listbox_get_current (l_hotlist, NULL, (void **) &entry);
entry             411 src/filemanager/hotlist.c             remove_from_hotlist (entry);
entry            1145 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry)
entry            1147 src/filemanager/hotlist.c     if (entry == NULL)
entry            1150 src/filemanager/hotlist.c     if (entry->type == HL_TYPE_DOTDOT)
entry            1162 src/filemanager/hotlist.c                     str_trunc (entry->label, 30));
entry            1169 src/filemanager/hotlist.c     if (entry->type == HL_TYPE_GROUP)
entry            1171 src/filemanager/hotlist.c         struct hotlist *head = entry->head;
entry            1179 src/filemanager/hotlist.c                         str_trunc (entry->label, 30));
entry            1186 src/filemanager/hotlist.c         remove_group (entry);
entry            1189 src/filemanager/hotlist.c     unlink_entry (entry);
entry            1191 src/filemanager/hotlist.c     g_free (entry->label);
entry            1192 src/filemanager/hotlist.c     g_free (entry->directory);
entry            1193 src/filemanager/hotlist.c     g_free (entry);
entry            1188 src/filemanager/mountlist.c             struct dirent entry;
entry            1191 src/filemanager/mountlist.c             if (readdir_r (dirp, &entry, &result) || result == NULL)
entry            1195 src/filemanager/mountlist.c             strcat (node, entry.d_name);
entry            1498 src/filemanager/mountlist.c     struct mount_entry *entry = NULL;
entry            1510 src/filemanager/mountlist.c             (entry == NULL || IS_PATH_SEP (path[i]) || path[i] == '\0'))
entry            1513 src/filemanager/mountlist.c             entry = me;
entry            1517 src/filemanager/mountlist.c     if (entry != NULL)
entry            1520 src/filemanager/mountlist.c         get_fs_usage (entry->me_mountdir, NULL, &fs_use);
entry            1522 src/filemanager/mountlist.c         myfs_stats->type = entry->me_dev;
entry            1523 src/filemanager/mountlist.c         myfs_stats->typename = entry->me_type;
entry            1524 src/filemanager/mountlist.c         myfs_stats->mpoint = entry->me_mountdir;
entry            1525 src/filemanager/mountlist.c         myfs_stats->mroot = entry->me_mntroot;
entry            1526 src/filemanager/mountlist.c         myfs_stats->device = entry->me_devname;
entry            1543 src/filemanager/mountlist.c         struct mount_entry *entry;
entry            1546 src/filemanager/mountlist.c     entry = read_file_system_list ();
entry            1547 src/filemanager/mountlist.c     if (entry != NULL)
entry            1549 src/filemanager/mountlist.c         get_fs_usage (entry->me_mountdir, NULL, &fs_use);
entry            1551 src/filemanager/mountlist.c         myfs_stats->type = entry->me_dev;
entry            1552 src/filemanager/mountlist.c         myfs_stats->typename = entry->me_type;
entry            1553 src/filemanager/mountlist.c         myfs_stats->mpoint = entry->me_mountdir;
entry            1554 src/filemanager/mountlist.c         myfs_stats->mroot = entry->me_mntroot;
entry            1555 src/filemanager/mountlist.c         myfs_stats->device = entry->me_devname;
entry            3019 src/filemanager/panel.c     const file_entry_t *entry;
entry            3024 src/filemanager/panel.c     entry = panel_current_entry (panel);
entry            3029 src/filemanager/panel.c     if (S_ISDIR (entry->st.st_mode) || link_isdir (entry))
entry            3030 src/filemanager/panel.c         new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname->str, (char *) NULL);
entry              89 src/filemanager/panelize.c     panelize_entry_t *entry = (panelize_entry_t *) data;
entry              91 src/filemanager/panelize.c     g_free (entry->command);
entry              92 src/filemanager/panelize.c     g_free (entry->label);
entry              93 src/filemanager/panelize.c     g_free (entry);
entry             101 src/filemanager/panelize.c     const panelize_entry_t *entry = (const panelize_entry_t *) a;
entry             104 src/filemanager/panelize.c     return strcmp (entry->label, label);
entry             112 src/filemanager/panelize.c     panelize_entry_t *entry = (panelize_entry_t *) data;
entry             116 src/filemanager/panelize.c     listbox_add_item (l_panelize, LISTBOX_APPEND_AT_END, 0, entry->label, entry, FALSE);
entry             256 src/filemanager/panelize.c     panelize_entry_t *entry;
entry             258 src/filemanager/panelize.c     entry = g_try_new (panelize_entry_t, 1);
entry             259 src/filemanager/panelize.c     if (entry != NULL)
entry             261 src/filemanager/panelize.c         entry->label = label;
entry             262 src/filemanager/panelize.c         entry->command = command;
entry             264 src/filemanager/panelize.c         panelize = g_slist_insert_sorted (panelize, entry, panelize_entry_cmp_by_label);
entry             290 src/filemanager/panelize.c remove_from_panelize (panelize_entry_t * entry)
entry             292 src/filemanager/panelize.c     if (strcmp (entry->label, _("Other command")) != 0)
entry             294 src/filemanager/panelize.c         panelize = g_slist_remove (panelize, entry);
entry             295 src/filemanager/panelize.c         panelize_entry_free (entry);
entry             464 src/filemanager/panelize.c             panelize_entry_t *entry;
entry             466 src/filemanager/panelize.c             listbox_get_current (l_panelize, NULL, (void **) &entry);
entry             467 src/filemanager/panelize.c             remove_from_panelize (entry);
entry             146 src/filemanager/tree.c remove_callback (tree_entry * entry, void *data)
entry             150 src/filemanager/tree.c     if (tree->selected_ptr == entry)
entry             477 src/filemanager/treestore.c tree_store_notify_remove (tree_entry * entry)
entry             485 src/filemanager/treestore.c         r (entry, p->hook_data);
entry             492 src/filemanager/treestore.c remove_entry (tree_entry * entry)
entry             494 src/filemanager/treestore.c     tree_entry *current = entry->prev;
entry             498 src/filemanager/treestore.c     tree_store_notify_remove (entry);
entry             501 src/filemanager/treestore.c     if (entry->next != NULL)
entry             502 src/filemanager/treestore.c         submask = entry->next->submask;
entry             504 src/filemanager/treestore.c     for (; current != NULL && current->sublevel > entry->sublevel; current = current->prev)
entry             512 src/filemanager/treestore.c     if (entry->prev != NULL)
entry             513 src/filemanager/treestore.c         entry->prev->next = entry->next;
entry             515 src/filemanager/treestore.c         ts.tree_first = entry->next;
entry             517 src/filemanager/treestore.c     if (entry->next != NULL)
entry             518 src/filemanager/treestore.c         entry->next->prev = entry->prev;
entry             520 src/filemanager/treestore.c         ts.tree_last = entry->prev;
entry             523 src/filemanager/treestore.c     vfs_path_free (entry->name, TRUE);
entry             524 src/filemanager/treestore.c     g_free (entry);
entry             904 src/filemanager/treestore.c     tree_entry *entry;
entry             908 src/filemanager/treestore.c         entry = tree_store_add_entry (vpath);
entry             909 src/filemanager/treestore.c         entry->scanned = TRUE;
entry             910 src/filemanager/treestore.c         return entry;
entry             913 src/filemanager/treestore.c     entry = tree_store_start_check (vpath);
entry             914 src/filemanager/treestore.c     if (entry == NULL)
entry             936 src/filemanager/treestore.c     entry->scanned = TRUE;
entry             938 src/filemanager/treestore.c     return entry;
entry             380 src/vfs/cpio/cpio.c     struct vfs_s_entry *entry = NULL;
entry             454 src/vfs/cpio/cpio.c     entry = VFS_SUBCLASS (me)->find_entry (me, root, tn, LINK_FOLLOW, FL_NONE); /* In case entry is already there */
entry             456 src/vfs/cpio/cpio.c     if (entry != NULL)
entry             462 src/vfs/cpio/cpio.c         if (!S_ISDIR (entry->ino->st.st_mode))
entry             470 src/vfs/cpio/cpio.c             entry->ino->st.st_mode = st->st_mode;
entry             471 src/vfs/cpio/cpio.c             entry->ino->st.st_uid = st->st_uid;
entry             472 src/vfs/cpio/cpio.c             entry->ino->st.st_gid = st->st_gid;
entry             474 src/vfs/cpio/cpio.c             entry->ino->st.st_atim = st->st_atim;
entry             475 src/vfs/cpio/cpio.c             entry->ino->st.st_mtim = st->st_mtim;
entry             476 src/vfs/cpio/cpio.c             entry->ino->st.st_ctim = st->st_ctim;
entry             478 src/vfs/cpio/cpio.c             entry->ino->st.st_atime = st->st_atime;
entry             479 src/vfs/cpio/cpio.c             entry->ino->st.st_mtime = st->st_mtime;
entry             480 src/vfs/cpio/cpio.c             entry->ino->st.st_ctime = st->st_ctime;
entry             514 src/vfs/cpio/cpio.c             entry = vfs_s_new_entry (me, tn, inode);
entry             515 src/vfs/cpio/cpio.c             vfs_s_insert_entry (me, root, entry);
entry             100 src/vfs/extfs/extfs.c static struct vfs_s_entry *extfs_resolve_symlinks_int (struct vfs_s_entry *entry, GSList * list);
entry             150 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry             154 src/vfs/extfs/extfs.c     entry = g_new0 (struct vfs_s_entry, 1);
entry             156 src/vfs/extfs/extfs.c     entry->name = g_strdup (name);
entry             157 src/vfs/extfs/extfs.c     entry->ino = inode;
entry             159 src/vfs/extfs/extfs.c     return entry;
entry             201 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry             217 src/vfs/extfs/extfs.c     entry = vfs_s_new_entry (me, name, inode);
entry             219 src/vfs/extfs/extfs.c         vfs_s_insert_entry (me, parent, entry);
entry             221 src/vfs/extfs/extfs.c     return entry;
entry             409 src/vfs/extfs/extfs.c             struct vfs_s_entry *entry;
entry             444 src/vfs/extfs/extfs.c                 entry = extfs_entry_new (super->me, p, pent->ino);
entry             445 src/vfs/extfs/extfs.c                 entry->dir = pent->ino;
entry             446 src/vfs/extfs/extfs.c                 g_queue_push_tail (pent->ino->subdir, entry);
entry             450 src/vfs/extfs/extfs.c                 entry = extfs_entry_new (super->me, p, super->root);
entry             451 src/vfs/extfs/extfs.c                 entry->dir = super->root;
entry             452 src/vfs/extfs/extfs.c                 g_queue_push_tail (super->root->subdir, entry);
entry             465 src/vfs/extfs/extfs.c                 entry->ino = pent->ino;
entry             490 src/vfs/extfs/extfs.c                 inode->ent = entry;
entry             491 src/vfs/extfs/extfs.c                 entry->ino = inode;
entry             815 src/vfs/extfs/extfs.c extfs_get_path_from_entry (const struct vfs_s_entry *entry)
entry             822 src/vfs/extfs/extfs.c     for (e = entry; e->dir != NULL; e = e->dir->ent)
entry             835 src/vfs/extfs/extfs.c extfs_resolve_symlinks_int (struct vfs_s_entry *entry, GSList * list)
entry             839 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
entry             840 src/vfs/extfs/extfs.c         return entry;
entry             842 src/vfs/extfs/extfs.c     if (g_slist_find (list, entry) != NULL)
entry             851 src/vfs/extfs/extfs.c         looping = g_slist_prepend (list, entry);
entry             852 src/vfs/extfs/extfs.c         pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE);
entry             865 src/vfs/extfs/extfs.c extfs_resolve_symlinks (struct vfs_s_entry *entry)
entry             871 src/vfs/extfs/extfs.c     res = extfs_resolve_symlinks_int (entry, NULL);
entry             915 src/vfs/extfs/extfs.c            const struct vfs_s_entry *entry, const char *localname)
entry             926 src/vfs/extfs/extfs.c     file = extfs_get_path_from_entry (entry);
entry            1037 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1044 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1045 src/vfs/extfs/extfs.c     if ((entry == NULL) && ((flags & O_CREAT) != 0))
entry            1048 src/vfs/extfs/extfs.c         entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKFILE);
entry            1049 src/vfs/extfs/extfs.c         created = (entry != NULL);
entry            1052 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1054 src/vfs/extfs/extfs.c     entry = extfs_resolve_symlinks (entry);
entry            1055 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1058 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
entry            1061 src/vfs/extfs/extfs.c     if (entry->ino->localname == NULL)
entry            1066 src/vfs/extfs/extfs.c         local_handle = vfs_mkstemps (&local_filename_vpath, "extfs", entry->name);
entry            1074 src/vfs/extfs/extfs.c             && extfs_cmd (" copyout ", archive, entry, local_filename))
entry            1081 src/vfs/extfs/extfs.c         entry->ino->localname = g_strdup (local_filename);
entry            1085 src/vfs/extfs/extfs.c     local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode);
entry            1091 src/vfs/extfs/extfs.c         local_handle = open (entry->ino->localname, flags, mode);
entry            1098 src/vfs/extfs/extfs.c     vfs_s_init_fh (extfs_info, entry->ino, created);
entry            1171 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1177 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1178 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1180 src/vfs/extfs/extfs.c     entry = extfs_resolve_symlinks (entry);
entry            1181 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1183 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
entry            1187 src/vfs/extfs/extfs.c     *info = g_queue_peek_head_link (entry->ino->subdir);
entry            1243 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1249 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1250 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1254 src/vfs/extfs/extfs.c         entry = extfs_resolve_symlinks (entry);
entry            1255 src/vfs/extfs/extfs.c         if (entry == NULL)
entry            1258 src/vfs/extfs/extfs.c     extfs_stat_move (buf, entry->ino);
entry            1299 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1305 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1306 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1308 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
entry            1313 src/vfs/extfs/extfs.c     len = strlen (entry->ino->linkname);
entry            1318 src/vfs/extfs/extfs.c     memcpy (buf, entry->ino->linkname, result);
entry            1362 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1368 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1369 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1371 src/vfs/extfs/extfs.c     entry = extfs_resolve_symlinks (entry);
entry            1372 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1374 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
entry            1379 src/vfs/extfs/extfs.c     if (extfs_cmd (" rm ", archive, entry, ""))
entry            1384 src/vfs/extfs/extfs.c     vfs_s_free_entry (VFS_SUPER (archive)->me, entry);
entry            1397 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1407 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1408 src/vfs/extfs/extfs.c     if (entry != NULL)
entry            1413 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKDIR);
entry            1414 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1416 src/vfs/extfs/extfs.c     entry = extfs_resolve_symlinks (entry);
entry            1417 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1419 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
entry            1425 src/vfs/extfs/extfs.c     if (extfs_cmd (" mkdir ", archive, entry, ""))
entry            1428 src/vfs/extfs/extfs.c         vfs_s_free_entry (VFS_SUPER (archive)->me, entry);
entry            1443 src/vfs/extfs/extfs.c     struct vfs_s_entry *entry;
entry            1449 src/vfs/extfs/extfs.c     entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE);
entry            1450 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1452 src/vfs/extfs/extfs.c     entry = extfs_resolve_symlinks (entry);
entry            1453 src/vfs/extfs/extfs.c     if (entry == NULL)
entry            1455 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
entry            1461 src/vfs/extfs/extfs.c     if (extfs_cmd (" rmdir ", archive, entry, ""))
entry            1466 src/vfs/extfs/extfs.c     vfs_s_free_entry (VFS_SUPER (archive)->me, entry);
entry             537 src/vfs/tar/tar.c     struct vfs_s_entry *entry;
entry             576 src/vfs/tar/tar.c             entry = VFS_SUBCLASS (me)->find_entry (me, parent, p, LINK_NO_FOLLOW, FL_NONE);
entry             577 src/vfs/tar/tar.c             if (entry != NULL)
entry             591 src/vfs/tar/tar.c     entry = vfs_s_new_entry (me, p, *inode);
entry             592 src/vfs/tar/tar.c     vfs_s_insert_entry (me, parent, entry);
entry              84 src/viewer/coord_cache.c mcview_ccache_add_entry (GPtrArray * cache, const coord_cache_entry_t * entry)
entry              87 src/viewer/coord_cache.c     g_ptr_array_add (cache, g_memdup2 (entry, sizeof (*entry)));
entry              89 src/viewer/coord_cache.c     g_ptr_array_add (cache, g_memdup (entry, sizeof (*entry)));
entry             248 src/viewer/coord_cache.c     coord_cache_entry_t current, next, entry;
entry             293 src/viewer/coord_cache.c     entry = current;
entry             372 src/viewer/coord_cache.c             entry = next;
entry             375 src/viewer/coord_cache.c     if (i + 1 == cache->len && entry.cc_offset != coord_cache_index (cache, i)->cc_offset)
entry             377 src/viewer/coord_cache.c         mcview_ccache_add_entry (cache, &entry);