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 918 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 920 lib/vfs/direntry.c entry = VFS_ENTRY (g_queue_peek_head (ino->subdir)); entry 921 lib/vfs/direntry.c vfs_s_free_entry (me, entry); entry 943 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 945 lib/vfs/direntry.c entry = g_new0 (struct vfs_s_entry, 1); entry 947 lib/vfs/direntry.c entry->name = g_strdup (name); entry 948 lib/vfs/direntry.c entry->ino = inode; entry 949 lib/vfs/direntry.c entry->ino->ent = entry; entry 950 lib/vfs/direntry.c CALL (init_entry) (me, entry); entry 952 lib/vfs/direntry.c return entry; entry 1715 lib/vfs/direntry.c struct vfs_s_entry *entry = VFS_ENTRY (iter->data); entry 1717 lib/vfs/direntry.c if ((size_t) entry->leading_spaces > final_num_spaces) entry 1721 lib/vfs/direntry.c source_name = entry->name; entry 1722 lib/vfs/direntry.c spacer = g_strnfill ((size_t) entry->leading_spaces - final_num_spaces, ' '); entry 1723 lib/vfs/direntry.c entry->name = g_strconcat (spacer, source_name, (char *) NULL); entry 1728 lib/vfs/direntry.c entry->leading_spaces = -1; entry 451 lib/vfs/interface.c struct vfs_dirent *entry = NULL; entry 469 lib/vfs/interface.c entry = vfs->readdir (vfs_path_element->dir.info); entry 470 lib/vfs/interface.c if (entry == NULL) entry 475 lib/vfs/interface.c str_vfs_convert_from (vfs_path_element->dir.converter, entry->d_name, vfs_str_buffer); entry 477 lib/vfs/interface.c g_string_append_len (vfs_str_buffer, entry->d_name, entry->d_len); entry 479 lib/vfs/interface.c vfs_dirent_assign (mc_readdir_result, vfs_str_buffer->str, entry->d_ino); entry 480 lib/vfs/interface.c vfs_dirent_free (entry); entry 482 lib/vfs/interface.c if (entry == NULL) entry 484 lib/vfs/interface.c return (entry != NULL) ? mc_readdir_result : NULL; entry 130 lib/vfs/xdirentry.h int (*init_entry) (struct vfs_class *me, struct vfs_s_entry *entry); // optional entry 176 lib/vfs/xdirentry.h struct vfs_s_inode *vfs_s_find_root (struct vfs_class *me, struct vfs_s_entry *entry); entry 201 lib/vfs/xdirentry.h vfs_s_store_filename_leading_spaces (struct vfs_s_entry *entry, size_t position) entry 203 lib/vfs/xdirentry.h entry->leading_spaces = (ssize_t) position; entry 140 lib/widget/input_complete.c struct vfs_dirent *entry = NULL; entry 200 lib/widget/input_complete.c while (directory != NULL && (entry = mc_readdir (directory)) != NULL) entry 202 lib/widget/input_complete.c if (!str_is_valid_string (entry->d_name)) entry 209 lib/widget/input_complete.c if (DIR_IS_DOT (entry->d_name) || DIR_IS_DOTDOT (entry->d_name)) entry 216 lib/widget/input_complete.c if (entry->d_name[0] != filename[0] || entry->d_len < filename_len entry 217 lib/widget/input_complete.c || strncmp (filename, entry->d_name, filename_len) != 0) entry 228 lib/widget/input_complete.c tmp_vpath = vfs_path_build_filename (dirname, entry->d_name, (char *) NULL); entry 266 lib/widget/input_complete.c if (entry == NULL) entry 294 lib/widget/input_complete.c g_string_append_len (temp, entry->d_name, entry->d_len); entry 309 lib/widget/input_complete.c static struct passwd *entry = NULL; entry 323 lib/widget/input_complete.c while ((entry = getpwent ()) != NULL) entry 328 lib/widget/input_complete.c if (text[1] == entry->pw_name[0] && strncmp (text + 1, entry->pw_name, userlen) == 0) entry 332 lib/widget/input_complete.c if (entry != NULL) entry 333 lib/widget/input_complete.c return g_strconcat ("~", entry->pw_name, PATH_SEP_STR, (char *) NULL); entry 850 lib/widget/listbox.c WLEntry *entry; entry 858 lib/widget/listbox.c entry = g_new (WLEntry, 1); entry 859 lib/widget/listbox.c entry->text = text; entry 860 lib/widget/listbox.c entry->data = data; entry 861 lib/widget/listbox.c entry->free_data = free_data; entry 862 lib/widget/listbox.c entry->hotkey = hotkey; entry 864 lib/widget/listbox.c listbox_add_entry (l, entry, pos); entry 866 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 240 src/editor/spell.c const AspellDictInfo *entry; entry 250 src/editor/spell.c while ((entry = mc_aspell_dict_info_enumeration_next (elem)) != NULL) entry 251 src/editor/spell.c if (entry->name != NULL) entry 253 src/editor/spell.c g_ptr_array_add (lang_list, g_strdup (entry->name)); entry 1225 src/filemanager/cmd.c const file_entry_t *entry; entry 1227 src/filemanager/cmd.c entry = panel_current_entry (panel); entry 1228 src/filemanager/cmd.c if ((entry != NULL && S_ISDIR (entry->st.st_mode) && DIR_IS_DOTDOT (entry->fname->str)) entry 1240 src/filemanager/cmd.c file_entry_t *entry; entry 1242 src/filemanager/cmd.c entry = panel_current_entry (panel); entry 1244 src/filemanager/cmd.c if (entry != NULL && S_ISDIR (entry->st.st_mode) && !DIR_IS_DOTDOT (entry->fname->str)) entry 1252 src/filemanager/cmd.c p = vfs_path_from_str (entry->fname->str); entry 1260 src/filemanager/cmd.c entry->st.st_size = (off_t) total; entry 1261 src/filemanager/cmd.c entry->f.dir_size_computed = 1; entry 1810 src/filemanager/find.c GList *entry; entry 1818 src/filemanager/find.c for (entry = listbox_get_first_link (find_list); entry != NULL && ok; entry 1819 src/filemanager/find.c entry = g_list_next (entry)) entry 1822 src/filemanager/find.c WLEntry *le = LENTRY (entry->data); entry 221 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry); entry 296 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry) entry 300 src/filemanager/hotlist.c if (current == entry) entry 301 src/filemanager/hotlist.c current_group->head = entry->next; entry 304 src/filemanager/hotlist.c while (current != NULL && current->next != entry) entry 307 src/filemanager/hotlist.c current->next = entry->next; entry 309 src/filemanager/hotlist.c entry->next = entry->up = NULL; entry 400 src/filemanager/hotlist.c struct hotlist *entry = NULL; entry 402 src/filemanager/hotlist.c listbox_get_current (l_hotlist, NULL, (void **) &entry); entry 403 src/filemanager/hotlist.c remove_from_hotlist (entry); entry 1135 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry) entry 1137 src/filemanager/hotlist.c if (entry == NULL) entry 1140 src/filemanager/hotlist.c if (entry->type == HL_TYPE_DOTDOT) entry 1152 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1159 src/filemanager/hotlist.c if (entry->type == HL_TYPE_GROUP) entry 1161 src/filemanager/hotlist.c struct hotlist *head = entry->head; entry 1169 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1176 src/filemanager/hotlist.c remove_group (entry); entry 1179 src/filemanager/hotlist.c unlink_entry (entry); entry 1181 src/filemanager/hotlist.c g_free (entry->label); entry 1182 src/filemanager/hotlist.c g_free (entry->directory); entry 1183 src/filemanager/hotlist.c g_free (entry); entry 1171 src/filemanager/mountlist.c struct dirent entry; entry 1174 src/filemanager/mountlist.c if (readdir_r (dirp, &entry, &result) || result == NULL) entry 1178 src/filemanager/mountlist.c strcat (node, entry.d_name); entry 1477 src/filemanager/mountlist.c struct mount_entry *entry = NULL; entry 1489 src/filemanager/mountlist.c && (entry == NULL || IS_PATH_SEP (path[i]) || path[i] == '\0')) entry 1492 src/filemanager/mountlist.c entry = me; entry 1496 src/filemanager/mountlist.c if (entry != NULL) entry 1499 src/filemanager/mountlist.c get_fs_usage (entry->me_mountdir, NULL, &fs_use); entry 1501 src/filemanager/mountlist.c myfs_stats->type = entry->me_dev; entry 1502 src/filemanager/mountlist.c myfs_stats->typename = entry->me_type; entry 1503 src/filemanager/mountlist.c myfs_stats->mpoint = entry->me_mountdir; entry 1504 src/filemanager/mountlist.c myfs_stats->mroot = entry->me_mntroot; entry 1505 src/filemanager/mountlist.c myfs_stats->device = entry->me_devname; entry 1522 src/filemanager/mountlist.c struct mount_entry *entry; entry 1525 src/filemanager/mountlist.c entry = read_file_system_list (); entry 1526 src/filemanager/mountlist.c if (entry != NULL) entry 1528 src/filemanager/mountlist.c get_fs_usage (entry->me_mountdir, NULL, &fs_use); entry 1530 src/filemanager/mountlist.c myfs_stats->type = entry->me_dev; entry 1531 src/filemanager/mountlist.c myfs_stats->typename = entry->me_type; entry 1532 src/filemanager/mountlist.c myfs_stats->mpoint = entry->me_mountdir; entry 1533 src/filemanager/mountlist.c myfs_stats->mroot = entry->me_mntroot; entry 1534 src/filemanager/mountlist.c myfs_stats->device = entry->me_devname; entry 2955 src/filemanager/panel.c const file_entry_t *entry; entry 2960 src/filemanager/panel.c entry = panel_current_entry (panel); entry 2961 src/filemanager/panel.c if (entry == NULL) entry 2967 src/filemanager/panel.c if (S_ISDIR (entry->st.st_mode) || link_isdir (entry)) entry 2968 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 252 src/filemanager/panelize.c panelize_entry_t *entry; entry 254 src/filemanager/panelize.c entry = g_try_new (panelize_entry_t, 1); entry 255 src/filemanager/panelize.c if (entry != NULL) entry 257 src/filemanager/panelize.c entry->label = label; entry 258 src/filemanager/panelize.c entry->command = command; entry 260 src/filemanager/panelize.c panelize = g_slist_insert_sorted (panelize, entry, panelize_entry_cmp_by_label); entry 285 src/filemanager/panelize.c remove_from_panelize (panelize_entry_t *entry) entry 287 src/filemanager/panelize.c if (strcmp (entry->label, _ ("Other command")) != 0) entry 289 src/filemanager/panelize.c panelize = g_slist_remove (panelize, entry); entry 290 src/filemanager/panelize.c panelize_entry_free (entry); entry 459 src/filemanager/panelize.c panelize_entry_t *entry; entry 461 src/filemanager/panelize.c listbox_get_current (l_panelize, NULL, (void **) &entry); entry 462 src/filemanager/panelize.c remove_from_panelize (entry); entry 147 src/filemanager/tree.c remove_callback (tree_entry *entry, void *data) entry 151 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 382 src/vfs/cpio/cpio.c struct vfs_s_entry *entry = NULL; entry 455 src/vfs/cpio/cpio.c entry = VFS_SUBCLASS (me)->find_entry (me, root, tn, LINK_FOLLOW, entry 458 src/vfs/cpio/cpio.c if (entry != NULL) entry 464 src/vfs/cpio/cpio.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 472 src/vfs/cpio/cpio.c entry->ino->st.st_mode = st->st_mode; entry 473 src/vfs/cpio/cpio.c entry->ino->st.st_uid = st->st_uid; entry 474 src/vfs/cpio/cpio.c entry->ino->st.st_gid = st->st_gid; entry 476 src/vfs/cpio/cpio.c vfs_copy_stat_times (st, &entry->ino->st); entry 509 src/vfs/cpio/cpio.c entry = vfs_s_new_entry (me, tn, inode); entry 510 src/vfs/cpio/cpio.c vfs_s_insert_entry (me, root, entry); entry 106 src/vfs/extfs/extfs.c static struct vfs_s_entry *extfs_resolve_symlinks_int (struct vfs_s_entry *entry, GSList *list); entry 156 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 160 src/vfs/extfs/extfs.c entry = g_new0 (struct vfs_s_entry, 1); entry 162 src/vfs/extfs/extfs.c entry->name = g_strdup (name); entry 163 src/vfs/extfs/extfs.c entry->ino = inode; entry 165 src/vfs/extfs/extfs.c return entry; entry 206 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 222 src/vfs/extfs/extfs.c entry = vfs_s_new_entry (me, name, inode); entry 224 src/vfs/extfs/extfs.c vfs_s_insert_entry (me, parent, entry); entry 226 src/vfs/extfs/extfs.c return entry; entry 414 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 449 src/vfs/extfs/extfs.c entry = extfs_entry_new (super->me, p, pent->ino); entry 450 src/vfs/extfs/extfs.c entry->dir = pent->ino; entry 451 src/vfs/extfs/extfs.c g_queue_push_tail (pent->ino->subdir, entry); entry 455 src/vfs/extfs/extfs.c entry = extfs_entry_new (super->me, p, super->root); entry 456 src/vfs/extfs/extfs.c entry->dir = super->root; entry 457 src/vfs/extfs/extfs.c g_queue_push_tail (super->root->subdir, entry); entry 470 src/vfs/extfs/extfs.c entry->ino = pent->ino; entry 495 src/vfs/extfs/extfs.c inode->ent = entry; entry 496 src/vfs/extfs/extfs.c entry->ino = inode; entry 830 src/vfs/extfs/extfs.c extfs_get_path_from_entry (const struct vfs_s_entry *entry) entry 837 src/vfs/extfs/extfs.c for (e = entry; e->dir != NULL; e = e->dir->ent) entry 850 src/vfs/extfs/extfs.c extfs_resolve_symlinks_int (struct vfs_s_entry *entry, GSList *list) entry 854 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 855 src/vfs/extfs/extfs.c return entry; entry 857 src/vfs/extfs/extfs.c if (g_slist_find (list, entry) != NULL) entry 866 src/vfs/extfs/extfs.c looping = g_slist_prepend (list, entry); entry 867 src/vfs/extfs/extfs.c pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE); entry 880 src/vfs/extfs/extfs.c extfs_resolve_symlinks (struct vfs_s_entry *entry) entry 886 src/vfs/extfs/extfs.c res = extfs_resolve_symlinks_int (entry, NULL); entry 930 src/vfs/extfs/extfs.c const struct vfs_s_entry *entry, const char *localname) entry 941 src/vfs/extfs/extfs.c file = extfs_get_path_from_entry (entry); entry 1052 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1059 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1060 src/vfs/extfs/extfs.c if ((entry == NULL) && ((flags & O_CREAT) != 0)) entry 1063 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKFILE); entry 1064 src/vfs/extfs/extfs.c created = (entry != NULL); entry 1067 src/vfs/extfs/extfs.c if (entry == NULL) entry 1069 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1070 src/vfs/extfs/extfs.c if (entry == NULL) entry 1073 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1076 src/vfs/extfs/extfs.c if (entry->ino->localname == NULL) entry 1081 src/vfs/extfs/extfs.c local_handle = vfs_mkstemps (&local_filename_vpath, "extfs", entry->name); entry 1089 src/vfs/extfs/extfs.c && extfs_cmd (" copyout ", archive, entry, local_filename)) entry 1096 src/vfs/extfs/extfs.c entry->ino->localname = g_strdup (local_filename); entry 1100 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode); entry 1106 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, flags, mode); entry 1113 src/vfs/extfs/extfs.c vfs_s_init_fh (extfs_info, entry->ino, created); entry 1185 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1191 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1192 src/vfs/extfs/extfs.c if (entry == NULL) entry 1194 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1195 src/vfs/extfs/extfs.c if (entry == NULL) entry 1197 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1201 src/vfs/extfs/extfs.c *info = g_queue_peek_head_link (entry->ino->subdir); entry 1263 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1269 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1270 src/vfs/extfs/extfs.c if (entry == NULL) entry 1274 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1275 src/vfs/extfs/extfs.c if (entry == NULL) entry 1278 src/vfs/extfs/extfs.c extfs_stat_move (buf, entry->ino); entry 1319 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1325 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1326 src/vfs/extfs/extfs.c if (entry == NULL) entry 1328 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 1333 src/vfs/extfs/extfs.c len = strlen (entry->ino->linkname); entry 1338 src/vfs/extfs/extfs.c memcpy (buf, entry->ino->linkname, result); entry 1361 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1367 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1368 src/vfs/extfs/extfs.c if (entry == NULL) entry 1370 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1371 src/vfs/extfs/extfs.c if (entry == NULL) entry 1373 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1378 src/vfs/extfs/extfs.c if (extfs_cmd (" rm ", archive, entry, "")) entry 1383 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1396 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1406 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1407 src/vfs/extfs/extfs.c if (entry != NULL) entry 1412 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKDIR); entry 1413 src/vfs/extfs/extfs.c if (entry == NULL) entry 1415 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1416 src/vfs/extfs/extfs.c if (entry == NULL) entry 1418 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1424 src/vfs/extfs/extfs.c if (extfs_cmd (" mkdir ", archive, entry, "")) entry 1427 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1442 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1448 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1449 src/vfs/extfs/extfs.c if (entry == NULL) entry 1451 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1452 src/vfs/extfs/extfs.c if (entry == NULL) entry 1454 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1460 src/vfs/extfs/extfs.c if (extfs_cmd (" rmdir ", archive, entry, "")) entry 1465 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 526 src/vfs/tar/tar.c struct vfs_s_entry *entry; entry 565 src/vfs/tar/tar.c entry = VFS_SUBCLASS (me)->find_entry (me, parent, p, LINK_NO_FOLLOW, FL_NONE); entry 566 src/vfs/tar/tar.c if (entry != NULL) entry 580 src/vfs/tar/tar.c entry = vfs_s_new_entry (me, p, *inode); entry 581 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 244 src/viewer/coord_cache.c coord_cache_entry_t current, next, entry; entry 289 src/viewer/coord_cache.c entry = current; entry 369 src/viewer/coord_cache.c entry = next; entry 372 src/viewer/coord_cache.c if (i + 1 == cache->len && entry.cc_offset != coord_cache_index (cache, i)->cc_offset) entry 374 src/viewer/coord_cache.c mcview_ccache_add_entry (cache, &entry);