entry 130 lib/vfs/direntry.c vfs_s_resolve_symlink (struct vfs_class *me, struct vfs_s_entry *entry, int follow) entry 137 lib/vfs/direntry.c return entry; entry 140 lib/vfs/direntry.c if (entry == NULL) entry 142 lib/vfs/direntry.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 143 lib/vfs/direntry.c return entry; entry 145 lib/vfs/direntry.c linkname = entry->ino->linkname; entry 154 lib/vfs/direntry.c fullpath = vfs_s_fullpath (me, entry->dir); entry 164 lib/vfs/direntry.c VFS_SUBCLASS (me)->find_entry (me, entry->dir->super->root, linkname, follow - 1, FL_NONE); entry 924 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 926 lib/vfs/direntry.c entry = VFS_ENTRY (g_queue_peek_head (ino->subdir)); entry 927 lib/vfs/direntry.c vfs_s_free_entry (me, entry); entry 949 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 951 lib/vfs/direntry.c entry = g_new0 (struct vfs_s_entry, 1); entry 953 lib/vfs/direntry.c entry->name = g_strdup (name); entry 954 lib/vfs/direntry.c entry->ino = inode; entry 955 lib/vfs/direntry.c entry->ino->ent = entry; entry 956 lib/vfs/direntry.c CALL (init_entry) (me, entry); entry 958 lib/vfs/direntry.c return entry; entry 1721 lib/vfs/direntry.c struct vfs_s_entry *entry = VFS_ENTRY (iter->data); entry 1723 lib/vfs/direntry.c if ((size_t) entry->leading_spaces > final_num_spaces) entry 1727 lib/vfs/direntry.c source_name = entry->name; entry 1728 lib/vfs/direntry.c spacer = g_strnfill ((size_t) entry->leading_spaces - final_num_spaces, ' '); entry 1729 lib/vfs/direntry.c entry->name = g_strconcat (spacer, source_name, (char *) NULL); entry 1734 lib/vfs/direntry.c entry->leading_spaces = -1; entry 466 lib/vfs/interface.c struct vfs_dirent *entry = NULL; entry 484 lib/vfs/interface.c entry = vfs->readdir (vfs_path_element->dir.info); entry 485 lib/vfs/interface.c if (entry == NULL) entry 490 lib/vfs/interface.c str_vfs_convert_from (vfs_path_element->dir.converter, entry->d_name, vfs_str_buffer); entry 492 lib/vfs/interface.c g_string_assign (vfs_str_buffer, entry->d_name); entry 494 lib/vfs/interface.c vfs_dirent_assign (mc_readdir_result, vfs_str_buffer->str, entry->d_ino); entry 495 lib/vfs/interface.c vfs_dirent_free (entry); entry 497 lib/vfs/interface.c if (entry == NULL) entry 499 lib/vfs/interface.c return (entry != NULL) ? mc_readdir_result : NULL; entry 125 lib/vfs/xdirentry.h int (*init_entry) (struct vfs_class * me, struct vfs_s_entry * entry); /* optional */ entry 174 lib/vfs/xdirentry.h struct vfs_s_inode *vfs_s_find_root (struct vfs_class *me, struct vfs_s_entry *entry); entry 199 lib/vfs/xdirentry.h vfs_s_store_filename_leading_spaces (struct vfs_s_entry *entry, size_t position) entry 201 lib/vfs/xdirentry.h entry->leading_spaces = (ssize_t) position; entry 142 lib/widget/input_complete.c struct vfs_dirent *entry = NULL; entry 202 lib/widget/input_complete.c while (directory != NULL && (entry = mc_readdir (directory)) != NULL) entry 204 lib/widget/input_complete.c if (!str_is_valid_string (entry->d_name)) entry 211 lib/widget/input_complete.c if (DIR_IS_DOT (entry->d_name) || DIR_IS_DOTDOT (entry->d_name)) entry 218 lib/widget/input_complete.c if ((entry->d_name[0] != filename[0]) || entry 219 lib/widget/input_complete.c ((NLENGTH (entry)) < filename_len) || entry 220 lib/widget/input_complete.c strncmp (filename, entry->d_name, filename_len) != 0) entry 231 lib/widget/input_complete.c tmp_vpath = vfs_path_build_filename (dirname, entry->d_name, (char *) NULL); entry 269 lib/widget/input_complete.c if (entry == NULL) entry 297 lib/widget/input_complete.c g_string_append (temp, entry->d_name); entry 312 lib/widget/input_complete.c static struct passwd *entry = NULL; entry 326 lib/widget/input_complete.c while ((entry = getpwent ()) != NULL) entry 331 lib/widget/input_complete.c if (text[1] == entry->pw_name[0] && strncmp (text + 1, entry->pw_name, userlen) == 0) entry 335 lib/widget/input_complete.c if (entry != NULL) entry 336 lib/widget/input_complete.c return g_strconcat ("~", entry->pw_name, PATH_SEP_STR, (char *) NULL); entry 809 lib/widget/listbox.c WLEntry *entry; entry 817 lib/widget/listbox.c entry = g_new (WLEntry, 1); entry 818 lib/widget/listbox.c entry->text = g_strdup (text); entry 819 lib/widget/listbox.c entry->data = data; entry 820 lib/widget/listbox.c entry->free_data = free_data; entry 821 lib/widget/listbox.c entry->hotkey = hotkey; entry 823 lib/widget/listbox.c listbox_append_item (l, entry, pos); entry 825 lib/widget/listbox.c return entry->text; entry 94 lib/widget/menu.c menu_entry_t *entry = MENUENTRY (i->data); entry 96 lib/widget/menu.c if (entry != NULL) entry 100 lib/widget/menu.c len = (size_t) hotkey_width (entry->text); entry 104 lib/widget/menu.c entry->shortcut = get_shortcut (entry->command); entry 106 lib/widget/menu.c if (entry->shortcut != NULL) entry 108 lib/widget/menu.c len = (size_t) str_term_width1 (entry->shortcut); entry 125 lib/widget/menu.c const menu_entry_t *entry = MENUENTRY (g_list_nth_data (menu->entries, idx)); entry 132 lib/widget/menu.c if (entry == NULL) entry 150 lib/widget/menu.c tty_print_char ((unsigned char) entry->first_letter); entry 153 lib/widget/menu.c tty_print_string (entry->text.start); entry 155 lib/widget/menu.c if (entry->text.hotkey != NULL) entry 158 lib/widget/menu.c tty_print_string (entry->text.hotkey); entry 162 lib/widget/menu.c if (entry->text.end != NULL) entry 163 lib/widget/menu.c tty_print_string (entry->text.end); entry 165 lib/widget/menu.c if (entry->shortcut != NULL) entry 168 lib/widget/menu.c tty_print_string (entry->shortcut); entry 353 lib/widget/menu.c const menu_entry_t *entry = MENUENTRY (g_list_nth_data (menu->entries, menu->selected)); entry 355 lib/widget/menu.c if ((entry != NULL) && (entry->command != CK_IgnoreKey)) entry 361 lib/widget/menu.c send_message (w->owner, w, MSG_ACTION, entry->command, NULL); entry 373 lib/widget/menu.c menu_entry_t *entry; entry 380 lib/widget/menu.c entry = MENUENTRY (g_list_nth_data (menu->entries, menu->selected)); entry 382 lib/widget/menu.c while ((entry == NULL) || (entry->command == CK_IgnoreKey)); entry 394 lib/widget/menu.c menu_entry_t *entry; entry 404 lib/widget/menu.c entry = MENUENTRY (g_list_nth_data (menu->entries, menu->selected)); entry 406 lib/widget/menu.c while ((entry == NULL) || (entry->command == CK_IgnoreKey)); entry 429 lib/widget/menu.c menu_entry_t *entry; entry 431 lib/widget/menu.c entry = MENUENTRY (g_list_nth_data (menu->entries, menu->selected)); entry 433 lib/widget/menu.c if ((entry == NULL) || (entry->command == CK_IgnoreKey)) entry 457 lib/widget/menu.c menu_entry_t *entry; entry 469 lib/widget/menu.c entry = MENUENTRY (g_list_nth_data (menu->entries, menu->selected)); entry 471 lib/widget/menu.c while ((entry == NULL) || (entry->command == CK_IgnoreKey)); entry 515 lib/widget/menu.c const menu_entry_t *entry = MENUENTRY (i->data); entry 517 lib/widget/menu.c if (entry != NULL && entry->text.hotkey != NULL entry 518 lib/widget/menu.c && hotkey == g_ascii_tolower (entry->text.hotkey[0])) entry 750 lib/widget/menu.c menu_entry_t *entry; entry 754 lib/widget/menu.c entry = MENUENTRY (g_list_nth_data (menu->entries, y)); entry 756 lib/widget/menu.c if (entry != NULL && entry->command != CK_IgnoreKey) entry 885 lib/widget/menu.c menu_entry_t *entry; entry 887 lib/widget/menu.c entry = g_new (menu_entry_t, 1); entry 888 lib/widget/menu.c entry->first_letter = ' '; entry 889 lib/widget/menu.c entry->text = hotkey_new (name); entry 890 lib/widget/menu.c entry->command = command; entry 891 lib/widget/menu.c entry->shortcut = NULL; entry 893 lib/widget/menu.c return entry; entry 899 lib/widget/menu.c menu_entry_free (menu_entry_t * entry) entry 901 lib/widget/menu.c if (entry != NULL) entry 903 lib/widget/menu.c hotkey_free (entry->text); entry 904 lib/widget/menu.c g_free (entry->shortcut); entry 905 lib/widget/menu.c g_free (entry); entry 364 src/editor/spell.c const AspellDictInfo *entry; entry 374 src/editor/spell.c while ((entry = mc_aspell_dict_info_enumeration_next (elem)) != NULL) entry 376 src/editor/spell.c if (entry->name != NULL) entry 380 src/editor/spell.c tmp = g_strdup (entry->name); entry 1242 src/filemanager/cmd.c const file_entry_t *entry = &panel->dir.list[panel->selected]; entry 1244 src/filemanager/cmd.c if ((S_ISDIR (entry->st.st_mode) && DIR_IS_DOTDOT (entry->fname->str)) || panel->dirs_marked) entry 1255 src/filemanager/cmd.c file_entry_t *entry = &panel->dir.list[panel->selected]; entry 1257 src/filemanager/cmd.c if (S_ISDIR (entry->st.st_mode) && !DIR_IS_DOTDOT (entry->fname->str)) entry 1265 src/filemanager/cmd.c p = vfs_path_from_str (entry->fname->str); entry 1273 src/filemanager/cmd.c entry->st.st_size = (off_t) total; entry 1274 src/filemanager/cmd.c entry->f.dir_size_computed = 1; entry 1808 src/filemanager/find.c GList *entry; entry 1816 src/filemanager/find.c for (entry = listbox_get_first_link (find_list); entry != NULL && ok; entry 1817 src/filemanager/find.c entry = g_list_next (entry)) entry 1820 src/filemanager/find.c WLEntry *le = LENTRY (entry->data); entry 221 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry); entry 302 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry) entry 306 src/filemanager/hotlist.c if (current == entry) entry 307 src/filemanager/hotlist.c current_group->head = entry->next; entry 310 src/filemanager/hotlist.c while (current != NULL && current->next != entry) entry 313 src/filemanager/hotlist.c current->next = entry->next; entry 315 src/filemanager/hotlist.c entry->next = entry->up = NULL; entry 406 src/filemanager/hotlist.c struct hotlist *entry = NULL; entry 408 src/filemanager/hotlist.c listbox_get_current (l_hotlist, NULL, (void **) &entry); entry 409 src/filemanager/hotlist.c remove_from_hotlist (entry); entry 1143 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry) entry 1145 src/filemanager/hotlist.c if (entry == NULL) entry 1148 src/filemanager/hotlist.c if (entry->type == HL_TYPE_DOTDOT) entry 1160 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1167 src/filemanager/hotlist.c if (entry->type == HL_TYPE_GROUP) entry 1169 src/filemanager/hotlist.c struct hotlist *head = entry->head; entry 1177 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1184 src/filemanager/hotlist.c remove_group (entry); entry 1187 src/filemanager/hotlist.c unlink_entry (entry); entry 1189 src/filemanager/hotlist.c g_free (entry->label); entry 1190 src/filemanager/hotlist.c g_free (entry->directory); entry 1191 src/filemanager/hotlist.c g_free (entry); entry 1185 src/filemanager/mountlist.c struct dirent entry; entry 1188 src/filemanager/mountlist.c if (readdir_r (dirp, &entry, &result) || result == NULL) entry 1192 src/filemanager/mountlist.c strcat (node, entry.d_name); entry 1495 src/filemanager/mountlist.c struct mount_entry *entry = NULL; entry 1507 src/filemanager/mountlist.c (entry == NULL || IS_PATH_SEP (path[i]) || path[i] == '\0')) entry 1510 src/filemanager/mountlist.c entry = me; entry 1514 src/filemanager/mountlist.c if (entry != NULL) entry 1517 src/filemanager/mountlist.c get_fs_usage (entry->me_mountdir, NULL, &fs_use); entry 1519 src/filemanager/mountlist.c myfs_stats->type = entry->me_dev; entry 1520 src/filemanager/mountlist.c myfs_stats->typename = entry->me_type; entry 1521 src/filemanager/mountlist.c myfs_stats->mpoint = entry->me_mountdir; entry 1522 src/filemanager/mountlist.c myfs_stats->mroot = entry->me_mntroot; entry 1523 src/filemanager/mountlist.c myfs_stats->device = entry->me_devname; entry 1540 src/filemanager/mountlist.c struct mount_entry *entry; entry 1543 src/filemanager/mountlist.c entry = read_file_system_list (); entry 1544 src/filemanager/mountlist.c if (entry != NULL) entry 1546 src/filemanager/mountlist.c get_fs_usage (entry->me_mountdir, NULL, &fs_use); entry 1548 src/filemanager/mountlist.c myfs_stats->type = entry->me_dev; entry 1549 src/filemanager/mountlist.c myfs_stats->typename = entry->me_type; entry 1550 src/filemanager/mountlist.c myfs_stats->mpoint = entry->me_mountdir; entry 1551 src/filemanager/mountlist.c myfs_stats->mroot = entry->me_mntroot; entry 1552 src/filemanager/mountlist.c myfs_stats->device = entry->me_devname; entry 2951 src/filemanager/panel.c const file_entry_t *entry = &panel->dir.list[panel->selected]; entry 2959 src/filemanager/panel.c if (S_ISDIR (entry->st.st_mode) || link_isdir (entry)) entry 2960 src/filemanager/panel.c new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname->str, (char *) NULL); entry 86 src/filemanager/panelize.c panelize_entry_t *entry = (panelize_entry_t *) data; entry 88 src/filemanager/panelize.c g_free (entry->command); entry 89 src/filemanager/panelize.c g_free (entry->label); entry 90 src/filemanager/panelize.c g_free (entry); entry 98 src/filemanager/panelize.c const panelize_entry_t *entry = (const panelize_entry_t *) a; entry 101 src/filemanager/panelize.c return strcmp (entry->label, label); entry 109 src/filemanager/panelize.c panelize_entry_t *entry = (panelize_entry_t *) data; entry 113 src/filemanager/panelize.c listbox_add_item (l_panelize, LISTBOX_APPEND_AT_END, 0, entry->label, entry, FALSE); entry 253 src/filemanager/panelize.c panelize_entry_t *entry; entry 255 src/filemanager/panelize.c entry = g_try_new (panelize_entry_t, 1); entry 256 src/filemanager/panelize.c if (entry != NULL) entry 258 src/filemanager/panelize.c entry->label = label; entry 259 src/filemanager/panelize.c entry->command = command; entry 261 src/filemanager/panelize.c panelize = g_slist_insert_sorted (panelize, entry, panelize_entry_cmp_by_label); entry 287 src/filemanager/panelize.c remove_from_panelize (panelize_entry_t * entry) entry 289 src/filemanager/panelize.c if (strcmp (entry->label, _("Other command")) != 0) entry 291 src/filemanager/panelize.c panelize = g_slist_remove (panelize, entry); entry 292 src/filemanager/panelize.c panelize_entry_free (entry); entry 461 src/filemanager/panelize.c panelize_entry_t *entry; entry 463 src/filemanager/panelize.c listbox_get_current (l_panelize, NULL, (void **) &entry); entry 464 src/filemanager/panelize.c remove_from_panelize (entry); entry 145 src/filemanager/tree.c remove_callback (tree_entry * entry, void *data) entry 149 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 381 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, FL_NONE); /* In case entry is already there */ entry 457 src/vfs/cpio/cpio.c if (entry != NULL) entry 463 src/vfs/cpio/cpio.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 471 src/vfs/cpio/cpio.c entry->ino->st.st_mode = st->st_mode; entry 472 src/vfs/cpio/cpio.c entry->ino->st.st_uid = st->st_uid; entry 473 src/vfs/cpio/cpio.c entry->ino->st.st_gid = st->st_gid; entry 475 src/vfs/cpio/cpio.c entry->ino->st.st_atim = st->st_atim; entry 476 src/vfs/cpio/cpio.c entry->ino->st.st_mtim = st->st_mtim; entry 477 src/vfs/cpio/cpio.c entry->ino->st.st_ctim = st->st_ctim; entry 479 src/vfs/cpio/cpio.c entry->ino->st.st_atime = st->st_atime; entry 480 src/vfs/cpio/cpio.c entry->ino->st.st_mtime = st->st_mtime; entry 481 src/vfs/cpio/cpio.c entry->ino->st.st_ctime = st->st_ctime; entry 515 src/vfs/cpio/cpio.c entry = vfs_s_new_entry (me, tn, inode); entry 516 src/vfs/cpio/cpio.c vfs_s_insert_entry (me, root, entry); entry 114 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 927 src/vfs/extfs/extfs.c file = extfs_get_path_from_entry (entry); entry 1009 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1016 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1017 src/vfs/extfs/extfs.c if ((entry == NULL) && ((flags & O_CREAT) != 0)) entry 1020 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKFILE); entry 1021 src/vfs/extfs/extfs.c created = (entry != NULL); entry 1024 src/vfs/extfs/extfs.c if (entry == NULL) entry 1026 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1027 src/vfs/extfs/extfs.c if (entry == NULL) entry 1030 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1033 src/vfs/extfs/extfs.c if (entry->ino->localname == NULL) entry 1038 src/vfs/extfs/extfs.c local_handle = vfs_mkstemps (&local_filename_vpath, "extfs", entry->name); entry 1046 src/vfs/extfs/extfs.c && extfs_cmd (" copyout ", archive, entry, local_filename)) entry 1053 src/vfs/extfs/extfs.c entry->ino->localname = g_strdup (local_filename); entry 1057 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode); entry 1063 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, flags, mode); entry 1070 src/vfs/extfs/extfs.c vfs_s_init_fh (extfs_info, entry->ino, created); entry 1143 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1149 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1150 src/vfs/extfs/extfs.c if (entry == NULL) entry 1152 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1153 src/vfs/extfs/extfs.c if (entry == NULL) entry 1155 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1159 src/vfs/extfs/extfs.c *info = g_queue_peek_head_link (entry->ino->subdir); entry 1215 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1221 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1222 src/vfs/extfs/extfs.c if (entry == NULL) entry 1226 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1227 src/vfs/extfs/extfs.c if (entry == NULL) entry 1230 src/vfs/extfs/extfs.c extfs_stat_move (buf, entry->ino); entry 1271 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1277 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1278 src/vfs/extfs/extfs.c if (entry == NULL) entry 1280 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 1288 src/vfs/extfs/extfs.c len = strlen (entry->ino->linkname); entry 1293 src/vfs/extfs/extfs.c memcpy (buf, entry->ino->linkname, result); entry 1337 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1343 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1344 src/vfs/extfs/extfs.c if (entry == NULL) entry 1346 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1347 src/vfs/extfs/extfs.c if (entry == NULL) entry 1349 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1357 src/vfs/extfs/extfs.c if (extfs_cmd (" rm ", archive, entry, "")) entry 1362 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1375 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1385 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1386 src/vfs/extfs/extfs.c if (entry != NULL) entry 1391 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKDIR); entry 1392 src/vfs/extfs/extfs.c if (entry == NULL) entry 1394 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1395 src/vfs/extfs/extfs.c if (entry == NULL) entry 1397 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1403 src/vfs/extfs/extfs.c if (extfs_cmd (" mkdir ", archive, entry, "")) entry 1406 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1421 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1427 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1428 src/vfs/extfs/extfs.c if (entry == NULL) entry 1430 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1431 src/vfs/extfs/extfs.c if (entry == NULL) entry 1433 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1442 src/vfs/extfs/extfs.c if (extfs_cmd (" rmdir ", archive, entry, "")) entry 1447 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 704 src/vfs/tar/tar.c struct vfs_s_entry *entry; entry 792 src/vfs/tar/tar.c entry = vfs_s_new_entry (me, p, inode); entry 793 src/vfs/tar/tar.c vfs_s_insert_entry (me, parent, entry); entry 804 src/vfs/tar/tar.c entry = VFS_SUBCLASS (me)->find_entry (me, parent, p, LINK_NO_FOLLOW, FL_NONE); entry 805 src/vfs/tar/tar.c if (entry != NULL) entry 817 src/vfs/tar/tar.c entry = vfs_s_new_entry (me, p, inode); entry 818 src/vfs/tar/tar.c vfs_s_insert_entry (me, parent, entry); entry 82 src/viewer/coord_cache.c mcview_ccache_add_entry (GPtrArray * cache, const coord_cache_entry_t * entry) entry 85 src/viewer/coord_cache.c g_ptr_array_add (cache, g_memdup2 (entry, sizeof (*entry))); entry 87 src/viewer/coord_cache.c g_ptr_array_add (cache, g_memdup (entry, sizeof (*entry))); entry 246 src/viewer/coord_cache.c coord_cache_entry_t current, next, entry; entry 291 src/viewer/coord_cache.c entry = current; entry 370 src/viewer/coord_cache.c entry = next; entry 373 src/viewer/coord_cache.c if (i + 1 == cache->len && entry.cc_offset != coord_cache_index (cache, i)->cc_offset) entry 375 src/viewer/coord_cache.c mcview_ccache_add_entry (cache, &entry);