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 921 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 923 lib/vfs/direntry.c entry = VFS_ENTRY (g_queue_peek_head (ino->subdir)); entry 924 lib/vfs/direntry.c vfs_s_free_entry (me, entry); entry 946 lib/vfs/direntry.c struct vfs_s_entry *entry; entry 948 lib/vfs/direntry.c entry = g_new0 (struct vfs_s_entry, 1); entry 950 lib/vfs/direntry.c entry->name = g_strdup (name); entry 951 lib/vfs/direntry.c entry->ino = inode; entry 952 lib/vfs/direntry.c entry->ino->ent = entry; entry 953 lib/vfs/direntry.c CALL (init_entry) (me, entry); entry 955 lib/vfs/direntry.c return entry; entry 1718 lib/vfs/direntry.c struct vfs_s_entry *entry = VFS_ENTRY (iter->data); entry 1720 lib/vfs/direntry.c if ((size_t) entry->leading_spaces > final_num_spaces) entry 1724 lib/vfs/direntry.c source_name = entry->name; entry 1725 lib/vfs/direntry.c spacer = g_strnfill ((size_t) entry->leading_spaces - final_num_spaces, ' '); entry 1726 lib/vfs/direntry.c entry->name = g_strconcat (spacer, source_name, (char *) NULL); entry 1731 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_append_len (vfs_str_buffer, entry->d_name, entry->d_len); 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 139 lib/widget/input_complete.c struct vfs_dirent *entry = NULL; entry 199 lib/widget/input_complete.c while (directory != NULL && (entry = mc_readdir (directory)) != NULL) entry 201 lib/widget/input_complete.c if (!str_is_valid_string (entry->d_name)) entry 208 lib/widget/input_complete.c if (DIR_IS_DOT (entry->d_name) || DIR_IS_DOTDOT (entry->d_name)) entry 215 lib/widget/input_complete.c if (entry->d_name[0] != filename[0] || entry->d_len < filename_len entry 216 lib/widget/input_complete.c || strncmp (filename, entry->d_name, filename_len) != 0) entry 227 lib/widget/input_complete.c tmp_vpath = vfs_path_build_filename (dirname, entry->d_name, (char *) NULL); entry 265 lib/widget/input_complete.c if (entry == NULL) entry 293 lib/widget/input_complete.c g_string_append_len (temp, entry->d_name, entry->d_len); entry 308 lib/widget/input_complete.c static struct passwd *entry = NULL; entry 322 lib/widget/input_complete.c while ((entry = getpwent ()) != NULL) entry 327 lib/widget/input_complete.c if (text[1] == entry->pw_name[0] && strncmp (text + 1, entry->pw_name, userlen) == 0) entry 331 lib/widget/input_complete.c if (entry != NULL) entry 332 lib/widget/input_complete.c return g_strconcat ("~", entry->pw_name, PATH_SEP_STR, (char *) NULL); entry 848 lib/widget/listbox.c WLEntry *entry; entry 856 lib/widget/listbox.c entry = g_new (WLEntry, 1); entry 857 lib/widget/listbox.c entry->text = text; entry 858 lib/widget/listbox.c entry->data = data; entry 859 lib/widget/listbox.c entry->free_data = free_data; entry 860 lib/widget/listbox.c entry->hotkey = hotkey; entry 862 lib/widget/listbox.c listbox_add_entry (l, entry, pos); entry 864 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 241 src/editor/spell.c const AspellDictInfo *entry; entry 251 src/editor/spell.c while ((entry = mc_aspell_dict_info_enumeration_next (elem)) != NULL) entry 252 src/editor/spell.c if (entry->name != NULL) entry 254 src/editor/spell.c g_ptr_array_add (lang_list, g_strdup (entry->name)); entry 1247 src/filemanager/cmd.c const file_entry_t *entry; entry 1249 src/filemanager/cmd.c entry = panel_current_entry (panel); entry 1250 src/filemanager/cmd.c if ((entry != NULL && S_ISDIR (entry->st.st_mode) && DIR_IS_DOTDOT (entry->fname->str)) entry 1262 src/filemanager/cmd.c file_entry_t *entry; entry 1264 src/filemanager/cmd.c entry = panel_current_entry (panel); entry 1266 src/filemanager/cmd.c if (entry != NULL && S_ISDIR (entry->st.st_mode) && !DIR_IS_DOTDOT (entry->fname->str)) entry 1274 src/filemanager/cmd.c p = vfs_path_from_str (entry->fname->str); entry 1282 src/filemanager/cmd.c entry->st.st_size = (off_t) total; entry 1283 src/filemanager/cmd.c entry->f.dir_size_computed = 1; entry 1820 src/filemanager/find.c GList *entry; entry 1828 src/filemanager/find.c for (entry = listbox_get_first_link (find_list); entry != NULL && ok; entry 1829 src/filemanager/find.c entry = g_list_next (entry)) entry 1832 src/filemanager/find.c WLEntry *le = LENTRY (entry->data); entry 222 src/filemanager/hotlist.c static void remove_from_hotlist (struct hotlist *entry); entry 297 src/filemanager/hotlist.c unlink_entry (struct hotlist *entry) entry 301 src/filemanager/hotlist.c if (current == entry) entry 302 src/filemanager/hotlist.c current_group->head = entry->next; entry 305 src/filemanager/hotlist.c while (current != NULL && current->next != entry) entry 308 src/filemanager/hotlist.c current->next = entry->next; entry 310 src/filemanager/hotlist.c entry->next = entry->up = NULL; entry 401 src/filemanager/hotlist.c struct hotlist *entry = NULL; entry 403 src/filemanager/hotlist.c listbox_get_current (l_hotlist, NULL, (void **) &entry); entry 404 src/filemanager/hotlist.c remove_from_hotlist (entry); entry 1137 src/filemanager/hotlist.c remove_from_hotlist (struct hotlist *entry) entry 1139 src/filemanager/hotlist.c if (entry == NULL) entry 1142 src/filemanager/hotlist.c if (entry->type == HL_TYPE_DOTDOT) entry 1154 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1161 src/filemanager/hotlist.c if (entry->type == HL_TYPE_GROUP) entry 1163 src/filemanager/hotlist.c struct hotlist *head = entry->head; entry 1171 src/filemanager/hotlist.c str_trunc (entry->label, 30)); entry 1178 src/filemanager/hotlist.c remove_group (entry); entry 1181 src/filemanager/hotlist.c unlink_entry (entry); entry 1183 src/filemanager/hotlist.c g_free (entry->label); entry 1184 src/filemanager/hotlist.c g_free (entry->directory); entry 1185 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 3078 src/filemanager/panel.c const file_entry_t *entry; entry 3083 src/filemanager/panel.c entry = panel_current_entry (panel); entry 3084 src/filemanager/panel.c if (entry == NULL) entry 3090 src/filemanager/panel.c if (S_ISDIR (entry->st.st_mode) || link_isdir (entry)) entry 3091 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 255 src/filemanager/panelize.c panelize_entry_t *entry; entry 257 src/filemanager/panelize.c entry = g_try_new (panelize_entry_t, 1); entry 258 src/filemanager/panelize.c if (entry != NULL) entry 260 src/filemanager/panelize.c entry->label = label; entry 261 src/filemanager/panelize.c entry->command = command; entry 263 src/filemanager/panelize.c panelize = g_slist_insert_sorted (panelize, entry, panelize_entry_cmp_by_label); entry 289 src/filemanager/panelize.c remove_from_panelize (panelize_entry_t *entry) entry 291 src/filemanager/panelize.c if (strcmp (entry->label, _("Other command")) != 0) entry 293 src/filemanager/panelize.c panelize = g_slist_remove (panelize, entry); entry 294 src/filemanager/panelize.c panelize_entry_free (entry); entry 463 src/filemanager/panelize.c panelize_entry_t *entry; entry 465 src/filemanager/panelize.c listbox_get_current (l_panelize, NULL, (void **) &entry); entry 466 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 vfs_copy_stat_times (st, &entry->ino->st); entry 507 src/vfs/cpio/cpio.c entry = vfs_s_new_entry (me, tn, inode); entry 508 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 823 src/vfs/extfs/extfs.c extfs_get_path_from_entry (const struct vfs_s_entry *entry) entry 830 src/vfs/extfs/extfs.c for (e = entry; e->dir != NULL; e = e->dir->ent) entry 843 src/vfs/extfs/extfs.c extfs_resolve_symlinks_int (struct vfs_s_entry *entry, GSList *list) entry 847 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 848 src/vfs/extfs/extfs.c return entry; entry 850 src/vfs/extfs/extfs.c if (g_slist_find (list, entry) != NULL) entry 859 src/vfs/extfs/extfs.c looping = g_slist_prepend (list, entry); entry 860 src/vfs/extfs/extfs.c pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE); entry 873 src/vfs/extfs/extfs.c extfs_resolve_symlinks (struct vfs_s_entry *entry) entry 879 src/vfs/extfs/extfs.c res = extfs_resolve_symlinks_int (entry, NULL); entry 923 src/vfs/extfs/extfs.c const struct vfs_s_entry *entry, const char *localname) entry 934 src/vfs/extfs/extfs.c file = extfs_get_path_from_entry (entry); entry 1045 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1052 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1053 src/vfs/extfs/extfs.c if ((entry == NULL) && ((flags & O_CREAT) != 0)) entry 1056 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKFILE); entry 1057 src/vfs/extfs/extfs.c created = (entry != NULL); entry 1060 src/vfs/extfs/extfs.c if (entry == NULL) entry 1062 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1063 src/vfs/extfs/extfs.c if (entry == NULL) entry 1066 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1069 src/vfs/extfs/extfs.c if (entry->ino->localname == NULL) entry 1074 src/vfs/extfs/extfs.c local_handle = vfs_mkstemps (&local_filename_vpath, "extfs", entry->name); entry 1082 src/vfs/extfs/extfs.c && extfs_cmd (" copyout ", archive, entry, local_filename)) entry 1089 src/vfs/extfs/extfs.c entry->ino->localname = g_strdup (local_filename); entry 1093 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode); entry 1099 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, flags, mode); entry 1106 src/vfs/extfs/extfs.c vfs_s_init_fh (extfs_info, entry->ino, created); entry 1179 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1185 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1186 src/vfs/extfs/extfs.c if (entry == NULL) entry 1188 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1189 src/vfs/extfs/extfs.c if (entry == NULL) entry 1191 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1195 src/vfs/extfs/extfs.c *info = g_queue_peek_head_link (entry->ino->subdir); entry 1258 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1264 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1265 src/vfs/extfs/extfs.c if (entry == NULL) entry 1269 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1270 src/vfs/extfs/extfs.c if (entry == NULL) entry 1273 src/vfs/extfs/extfs.c extfs_stat_move (buf, entry->ino); entry 1314 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1320 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1321 src/vfs/extfs/extfs.c if (entry == NULL) entry 1323 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) entry 1328 src/vfs/extfs/extfs.c len = strlen (entry->ino->linkname); entry 1333 src/vfs/extfs/extfs.c memcpy (buf, entry->ino->linkname, result); entry 1377 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1383 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1384 src/vfs/extfs/extfs.c if (entry == NULL) entry 1386 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1387 src/vfs/extfs/extfs.c if (entry == NULL) entry 1389 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) entry 1394 src/vfs/extfs/extfs.c if (extfs_cmd (" rm ", archive, entry, "")) entry 1399 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1412 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1422 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1423 src/vfs/extfs/extfs.c if (entry != NULL) entry 1428 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_MKDIR); entry 1429 src/vfs/extfs/extfs.c if (entry == NULL) entry 1431 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1432 src/vfs/extfs/extfs.c if (entry == NULL) entry 1434 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1440 src/vfs/extfs/extfs.c if (extfs_cmd (" mkdir ", archive, entry, "")) entry 1443 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 1458 src/vfs/extfs/extfs.c struct vfs_s_entry *entry; entry 1464 src/vfs/extfs/extfs.c entry = extfs_find_entry (VFS_SUPER (archive)->root, q, FL_NONE); entry 1465 src/vfs/extfs/extfs.c if (entry == NULL) entry 1467 src/vfs/extfs/extfs.c entry = extfs_resolve_symlinks (entry); entry 1468 src/vfs/extfs/extfs.c if (entry == NULL) entry 1470 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) entry 1476 src/vfs/extfs/extfs.c if (extfs_cmd (" rmdir ", archive, entry, "")) entry 1481 src/vfs/extfs/extfs.c vfs_s_free_entry (VFS_SUPER (archive)->me, entry); entry 540 src/vfs/tar/tar.c struct vfs_s_entry *entry; entry 579 src/vfs/tar/tar.c entry = VFS_SUBCLASS (me)->find_entry (me, parent, p, LINK_NO_FOLLOW, FL_NONE); entry 580 src/vfs/tar/tar.c if (entry != NULL) entry 594 src/vfs/tar/tar.c entry = vfs_s_new_entry (me, p, *inode); entry 595 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);