ino               144 lib/vfs/direntry.c     if (!S_ISLNK (entry->ino->st.st_mode))
ino               147 lib/vfs/direntry.c     linkname = entry->ino->linkname;
ino               230 lib/vfs/direntry.c         root = ent->ino;
ino               256 lib/vfs/direntry.c         struct vfs_s_inode *ino;
ino               260 lib/vfs/direntry.c         ino = vfs_s_find_inode (me, root->super, dirname, follow, flags | FL_DIR);
ino               261 lib/vfs/direntry.c         ent = vfs_s_find_entry_tree (me, ino, name, follow, flags);
ino               271 lib/vfs/direntry.c     if (ent != NULL && !VFS_SUBCLASS (me)->dir_uptodate (me, ent->ino))
ino               282 lib/vfs/direntry.c         struct vfs_s_inode *ino;
ino               284 lib/vfs/direntry.c         ino = vfs_s_new_inode (me, root->super, vfs_s_default_stat (me, S_IFDIR | 0755));
ino               285 lib/vfs/direntry.c         ent = vfs_s_new_entry (me, path, ino);
ino               286 lib/vfs/direntry.c         if (VFS_SUBCLASS (me)->dir_load (me, ino, path) == -1)
ino               368 lib/vfs/direntry.c vfs_s_new_fh (struct vfs_s_inode *ino, gboolean changed)
ino               373 lib/vfs/direntry.c     vfs_s_init_fh (fh, ino, changed);
ino               397 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               407 lib/vfs/direntry.c     ino = vfs_s_find_inode (me, super, q, (flags & FL_FOLLOW) != 0 ? LINK_FOLLOW : LINK_NO_FOLLOW,
ino               409 lib/vfs/direntry.c     if (ino == NULL && *q == '\0')
ino               411 lib/vfs/direntry.c         ino =
ino               414 lib/vfs/direntry.c     return ino;
ino               509 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               511 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, flag);
ino               512 lib/vfs/direntry.c     if (ino == NULL)
ino               514 lib/vfs/direntry.c     *buf = ino->st;
ino               523 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               527 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, 0);
ino               528 lib/vfs/direntry.c     if (ino == NULL)
ino               533 lib/vfs/direntry.c     if (!S_ISLNK (ino->st.st_mode))
ino               539 lib/vfs/direntry.c     if (ino->linkname == NULL)
ino               545 lib/vfs/direntry.c     len = strlen (ino->linkname);
ino               549 lib/vfs/direntry.c     memcpy (buf, ino->linkname, len);
ino               615 lib/vfs/direntry.c     off_t size = file->ino->st.st_size;
ino               676 lib/vfs/direntry.c         s = vfs_s_fullpath (me, file->ino);
ino               682 lib/vfs/direntry.c             res = sub->file_store (me, fh, s, file->ino->localname);
ino               694 lib/vfs/direntry.c     vfs_s_free_inode (me, file->ino);
ino               764 lib/vfs/direntry.c         if ((me->flags & VFSF_USETMP) != 0 && fh->ino != NULL)
ino               765 lib/vfs/direntry.c             local = vfs_path_from_str_flags (fh->ino->localname, VPF_NO_CANON);
ino               801 lib/vfs/direntry.c         struct vfs_s_inode *ino;
ino               803 lib/vfs/direntry.c         ino = vfs_s_inode_from_path (vpath, 0);
ino               804 lib/vfs/direntry.c         if (ino == NULL)
ino               807 lib/vfs/direntry.c             ino->super->want_stale = TRUE;
ino               810 lib/vfs/direntry.c             ino->super->want_stale = FALSE;
ino               811 lib/vfs/direntry.c             vfs_s_invalidate (me, ino->super);
ino               858 lib/vfs/direntry.c vfs_s_dir_uptodate (struct vfs_class *me, struct vfs_s_inode *ino)
ino               870 lib/vfs/direntry.c     return (tim < ino->timestamp);
ino               880 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               882 lib/vfs/direntry.c     ino = g_try_new0 (struct vfs_s_inode, 1);
ino               883 lib/vfs/direntry.c     if (ino == NULL)
ino               887 lib/vfs/direntry.c         ino->st = *initstat;
ino               888 lib/vfs/direntry.c     ino->super = super;
ino               889 lib/vfs/direntry.c     ino->subdir = g_queue_new ();
ino               890 lib/vfs/direntry.c     ino->st.st_nlink = 0;
ino               891 lib/vfs/direntry.c     ino->st.st_ino = VFS_SUBCLASS (me)->inode_counter++;
ino               892 lib/vfs/direntry.c     ino->st.st_dev = VFS_SUBCLASS (me)->rdev;
ino               896 lib/vfs/direntry.c     CALL (init_inode) (me, ino);
ino               898 lib/vfs/direntry.c     return ino;
ino               904 lib/vfs/direntry.c vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               906 lib/vfs/direntry.c     if (ino == NULL)
ino               910 lib/vfs/direntry.c     if (ino->st.st_nlink > 1)
ino               912 lib/vfs/direntry.c         ino->st.st_nlink--;
ino               916 lib/vfs/direntry.c     while (g_queue_get_length (ino->subdir) != 0)
ino               920 lib/vfs/direntry.c         entry = VFS_ENTRY (g_queue_peek_head (ino->subdir));
ino               924 lib/vfs/direntry.c     g_queue_free (ino->subdir);
ino               925 lib/vfs/direntry.c     ino->subdir = NULL;
ino               927 lib/vfs/direntry.c     CALL (free_inode) (me, ino);
ino               928 lib/vfs/direntry.c     g_free (ino->linkname);
ino               929 lib/vfs/direntry.c     if ((me->flags & VFSF_USETMP) != 0 && ino->localname != NULL)
ino               931 lib/vfs/direntry.c         unlink (ino->localname);
ino               932 lib/vfs/direntry.c         g_free (ino->localname);
ino               934 lib/vfs/direntry.c     ino->super->ino_usage--;
ino               935 lib/vfs/direntry.c     g_free (ino);
ino               948 lib/vfs/direntry.c     entry->ino = inode;
ino               949 lib/vfs/direntry.c     entry->ino->ent = entry;
ino               965 lib/vfs/direntry.c     if (ent->ino != NULL)
ino               967 lib/vfs/direntry.c         ent->ino->ent = NULL;
ino               968 lib/vfs/direntry.c         vfs_s_free_inode (me, ent->ino);
ino               983 lib/vfs/direntry.c     ent->ino->st.st_nlink++;
ino              1093 lib/vfs/direntry.c     return (ent != NULL ? ent->ino : NULL);
ino              1236 lib/vfs/direntry.c vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino)
ino              1238 lib/vfs/direntry.c     if (ino->ent == NULL)
ino              1246 lib/vfs/direntry.c         path = g_strdup (ino->ent->name);
ino              1252 lib/vfs/direntry.c             ino = ino->ent->dir;
ino              1253 lib/vfs/direntry.c             if (ino == ino->super->root)
ino              1256 lib/vfs/direntry.c             newpath = g_strconcat (ino->ent->name, PATH_SEP_STR, path, (char *) NULL);
ino              1264 lib/vfs/direntry.c     if (ino->ent->dir == NULL || ino->ent->dir->ent == NULL)
ino              1265 lib/vfs/direntry.c         return g_strdup (ino->ent->name);
ino              1267 lib/vfs/direntry.c     return g_strconcat (ino->ent->dir->ent->name, PATH_SEP_STR, ino->ent->name, (char *) NULL);
ino              1273 lib/vfs/direntry.c vfs_s_init_fh (vfs_file_handler_t *fh, struct vfs_s_inode *ino, gboolean changed)
ino              1275 lib/vfs/direntry.c     fh->ino = ino;
ino              1291 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino              1301 lib/vfs/direntry.c     ino = vfs_s_find_inode (me, super, q, LINK_FOLLOW, FL_NONE);
ino              1302 lib/vfs/direntry.c     if (ino != NULL && (flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
ino              1310 lib/vfs/direntry.c     if (ino == NULL)
ino              1328 lib/vfs/direntry.c         ino = ent->ino;
ino              1336 lib/vfs/direntry.c             ino->localname = vfs_path_free (tmp_vpath, FALSE);
ino              1350 lib/vfs/direntry.c     if (S_ISDIR (ino->st.st_mode))
ino              1356 lib/vfs/direntry.c     fh = s->fh_new != NULL ? s->fh_new (ino, was_changed) : vfs_s_new_fh (ino, was_changed);
ino              1375 lib/vfs/direntry.c     if ((VFS_CLASS (s)->flags & VFSF_USETMP) != 0 && fh->ino->localname != NULL)
ino              1377 lib/vfs/direntry.c         fh->handle = open (fh->ino->localname, NO_LINEAR (flags), mode);
ino              1389 lib/vfs/direntry.c     fh->ino->st.st_nlink++;
ino              1414 lib/vfs/direntry.c     *buf = VFS_FILE_HANDLER (fh)->ino->st;
ino              1421 lib/vfs/direntry.c vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino)
ino              1428 lib/vfs/direntry.c     off_t stat_size = ino->st.st_size;
ino              1436 lib/vfs/direntry.c     handle = vfs_mkstemps (&tmp_vpath, me->name, ino->ent->name);
ino              1437 lib/vfs/direntry.c     ino->localname = vfs_path_free (tmp_vpath, FALSE);
ino              1444 lib/vfs/direntry.c     fh = s->fh_new != NULL ? s->fh_new (ino, FALSE) : vfs_s_new_fh (ino, FALSE);
ino              1461 lib/vfs/direntry.c         vfs_s_print_stats (me->name, _ ("Getting file"), ino->ent->name, total, stat_size);
ino              1486 lib/vfs/direntry.c     unlink (ino->localname);
ino              1488 lib/vfs/direntry.c     MC_PTR_FREE (ino->localname);
ino               535 lib/vfs/vfs.c  vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino)
ino               545 lib/vfs/vfs.c      vfs_dirent_assign (ret, fname, ino);
ino               560 lib/vfs/vfs.c  vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino)
ino               565 lib/vfs/vfs.c      d->d_ino = ino;
ino               282 lib/vfs/vfs.h  struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino);
ino               283 lib/vfs/vfs.h  void vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino);
ino                50 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER_SUPER(a) VFS_FILE_HANDLER (a)->ino->super
ino                86 lib/vfs/xdirentry.h     struct vfs_s_inode *ino;  // ... and its inode
ino               109 lib/vfs/xdirentry.h     struct vfs_s_inode *ino;
ino               128 lib/vfs/xdirentry.h     int (*init_inode) (struct vfs_class *me, struct vfs_s_inode *ino);    // optional
ino               129 lib/vfs/xdirentry.h     void (*free_inode) (struct vfs_class *me, struct vfs_s_inode *ino);   // optional
ino               140 lib/vfs/xdirentry.h     vfs_file_handler_t *(*fh_new) (struct vfs_s_inode *ino, gboolean changed);
ino               147 lib/vfs/xdirentry.h     int (*dir_load) (struct vfs_class *me, struct vfs_s_inode *ino, const char *path);
ino               148 lib/vfs/xdirentry.h     gboolean (*dir_uptodate) (struct vfs_class *me, struct vfs_s_inode *ino);
ino               163 lib/vfs/xdirentry.h void vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino);
ino               185 lib/vfs/xdirentry.h char *vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino);
ino               187 lib/vfs/xdirentry.h void vfs_s_init_fh (vfs_file_handler_t *fh, struct vfs_s_inode *ino, gboolean changed);
ino               194 lib/vfs/xdirentry.h int vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino);
ino               113 src/filemanager/file.c     ino_t ino;
ino               335 src/filemanager/file.c     ino_t ino = sb->st_ino;
ino               344 src/filemanager/file.c         if (lnk->vfs == class && lnk->ino == ino && lnk->dev == dev)
ino               364 src/filemanager/file.c     ino_t ino = src_stat->st_ino;
ino               380 src/filemanager/file.c         if (stat_result == 0 && link_stat.st_ino == ino && link_stat.st_dev == dev)
ino               476 src/filemanager/file.c         lnk->ino = ino;
ino              3123 src/filemanager/file.c     lp->ino = src_stat.st_ino;
ino              3198 src/filemanager/file.c         lp->ino = dst_stat.st_ino;
ino               800 src/filemanager/mountlist.c             ino_t ino;
ino               835 src/filemanager/mountlist.c                     re->ino = statbuf.st_ino;
ino               855 src/filemanager/mountlist.c                     if (re->dev == fi.dev && re->ino == fi.root)
ino               464 src/vfs/cpio/cpio.c         if (!S_ISDIR (entry->ino->st.st_mode))
ino               472 src/vfs/cpio/cpio.c             entry->ino->st.st_mode = st->st_mode;
ino               473 src/vfs/cpio/cpio.c             entry->ino->st.st_uid = st->st_uid;
ino               474 src/vfs/cpio/cpio.c             entry->ino->st.st_gid = st->st_gid;
ino               476 src/vfs/cpio/cpio.c             vfs_copy_stat_times (st, &entry->ino->st);
ino               852 src/vfs/cpio/cpio.c     off_t begin = file->ino->data_offset;
ino               858 src/vfs/cpio/cpio.c     count = MIN (count, (size_t) (file->ino->st.st_size - file->pos));
ino               163 src/vfs/extfs/extfs.c     entry->ino = inode;
ino               274 src/vfs/extfs/extfs.c             if (!S_ISDIR (pent->ino->st.st_mode))
ino               282 src/vfs/extfs/extfs.c             pl = g_queue_find_custom (pent->ino->subdir, p, vfs_s_entry_compare);
ino               288 src/vfs/extfs/extfs.c                 notadir = !S_ISDIR (pent->ino->st.st_mode);
ino               294 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFDIR | 0777);
ino               296 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFREG | 0666);
ino               342 src/vfs/extfs/extfs.c extfs_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               346 src/vfs/extfs/extfs.c     if (ino->localname != NULL)
ino               348 src/vfs/extfs/extfs.c         unlink (ino->localname);
ino               349 src/vfs/extfs/extfs.c         MC_PTR_FREE (ino->localname);
ino               449 src/vfs/extfs/extfs.c                 entry = extfs_entry_new (super->me, p, pent->ino);
ino               450 src/vfs/extfs/extfs.c                 entry->dir = pent->ino;
ino               451 src/vfs/extfs/extfs.c                 g_queue_push_tail (pent->ino->subdir, entry);
ino               469 src/vfs/extfs/extfs.c                 pent->ino->st.st_nlink++;
ino               470 src/vfs/extfs/extfs.c                 entry->ino = pent->ino;
ino               496 src/vfs/extfs/extfs.c                 entry->ino = inode;
ino               588 src/vfs/extfs/extfs.c     root_entry->ino->st.st_uid = mystat.st_uid;
ino               589 src/vfs/extfs/extfs.c     root_entry->ino->st.st_gid = mystat.st_gid;
ino               590 src/vfs/extfs/extfs.c     root_entry->ino->st.st_atime = mystat.st_atime;
ino               591 src/vfs/extfs/extfs.c     root_entry->ino->st.st_ctime = mystat.st_ctime;
ino               592 src/vfs/extfs/extfs.c     root_entry->ino->st.st_mtime = mystat.st_mtime;
ino               593 src/vfs/extfs/extfs.c     root_entry->ino->ent = root_entry;
ino               594 src/vfs/extfs/extfs.c     VFS_SUPER (current_archive)->root = root_entry->ino;
ino               854 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
ino               867 src/vfs/extfs/extfs.c         pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE);
ino              1073 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
ino              1076 src/vfs/extfs/extfs.c     if (entry->ino->localname == NULL)
ino              1096 src/vfs/extfs/extfs.c         entry->ino->localname = g_strdup (local_filename);
ino              1100 src/vfs/extfs/extfs.c     local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode);
ino              1106 src/vfs/extfs/extfs.c         local_handle = open (entry->ino->localname, flags, mode);
ino              1113 src/vfs/extfs/extfs.c     vfs_s_init_fh (extfs_info, entry->ino, created);
ino              1148 src/vfs/extfs/extfs.c         if (extfs_cmd (" copyin ", EXTFS_SUPER (VFS_FILE_HANDLER_SUPER (fh)), file->ino->ent,
ino              1149 src/vfs/extfs/extfs.c                        file->ino->localname))
ino              1152 src/vfs/extfs/extfs.c         if (stat (file->ino->localname, &file_status) != 0)
ino              1155 src/vfs/extfs/extfs.c             file->ino->st.st_size = file_status.st_size;
ino              1157 src/vfs/extfs/extfs.c         file->ino->st.st_mtime = time (NULL);
ino              1197 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1201 src/vfs/extfs/extfs.c     *info = g_queue_peek_head_link (entry->ino->subdir);
ino              1278 src/vfs/extfs/extfs.c     extfs_stat_move (buf, entry->ino);
ino              1307 src/vfs/extfs/extfs.c     extfs_stat_move (buf, file->ino);
ino              1328 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
ino              1333 src/vfs/extfs/extfs.c     len = strlen (entry->ino->linkname);
ino              1338 src/vfs/extfs/extfs.c     memcpy (buf, entry->ino->linkname, result);
ino              1373 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
ino              1418 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1454 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1520 src/vfs/extfs/extfs.c     if (fh->ino->localname == NULL)
ino              1525 src/vfs/extfs/extfs.c     p = vfs_path_from_str (fh->ino->localname);
ino              1542 src/vfs/extfs/extfs.c     if (strcmp (fh->ino->localname, vfs_path_get_last_path_str (local)) == 0)
ino              2033 src/vfs/ftpfs/ftpfs.c     name = vfs_s_fullpath (me, fh->ino);
ino              2296 src/vfs/ftpfs/ftpfs.c ftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed)
ino              2301 src/vfs/ftpfs/ftpfs.c     vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed);
ino              2332 src/vfs/ftpfs/ftpfs.c             if (fh->ino->localname == NULL)
ino              2337 src/vfs/ftpfs/ftpfs.c                 handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
ino              2342 src/vfs/ftpfs/ftpfs.c                 fh->ino->localname = vfs_path_free (vpath, FALSE);
ino              2347 src/vfs/ftpfs/ftpfs.c         name = vfs_s_fullpath (me, fh->ino);
ino              2365 src/vfs/ftpfs/ftpfs.c         if (fh->ino->localname != NULL)
ino              2367 src/vfs/ftpfs/ftpfs.c             unlink (fh->ino->localname);
ino              2368 src/vfs/ftpfs/ftpfs.c             MC_PTR_FREE (fh->ino->localname);
ino              2373 src/vfs/ftpfs/ftpfs.c     if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1)
ino              2376 src/vfs/ftpfs/ftpfs.c     if (fh->ino->localname == NULL)
ino              2386 src/vfs/ftpfs/ftpfs.c     if (fh->handle != -1 && fh->ino->localname == NULL)
ino              1158 src/vfs/ftpfs/ftpfs_parse_ls.c                 nlink = info->ino->st.st_nlink;
ino              1159 src/vfs/ftpfs/ftpfs_parse_ls.c                 ok = (*line_parsers[i]) (tmp_line, &info->ino->st, &info->name,
ino              1160 src/vfs/ftpfs/ftpfs_parse_ls.c                                          &info->ino->linkname, &err[i]);
ino              1163 src/vfs/ftpfs/ftpfs_parse_ls.c                     info->ino->st.st_nlink = nlink;  // Ouch, we need to preserve our counts :-(
ino              1199 src/vfs/ftpfs/ftpfs_parse_ls.c             nlink = info->ino->st.st_nlink;
ino              1200 src/vfs/ftpfs/ftpfs_parse_ls.c             ok = guessed_parser (tmp_line, &info->ino->st, &info->name, &info->ino->linkname,
ino              1204 src/vfs/ftpfs/ftpfs_parse_ls.c                 info->ino->st.st_nlink = nlink;  // Ouch, we need to preserve our counts :-(
ino               107 src/vfs/sftpfs/file.c sftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed)
ino               112 src/vfs/sftpfs/file.c     vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed);
ino               135 src/vfs/sftpfs/file.c     sftpfs_super_t *super = SFTP_SUPER (fh->ino->super);
ino               142 src/vfs/sftpfs/file.c     name = vfs_s_fullpath (vfs_sftpfs_ops, fh->ino);
ino               408 src/vfs/sftpfs/file.c         if (fh->pos > fh->ino->st.st_size - offset)
ino               413 src/vfs/sftpfs/file.c         fh->pos = fh->ino->st.st_size - offset;
ino                96 src/vfs/sftpfs/internal.h vfs_file_handler_t *sftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed);
ino               145 src/vfs/sftpfs/sftpfs.c         path_inode = ent->ino;
ino               167 src/vfs/sftpfs/sftpfs.c     fh->ino->st.st_nlink++;
ino               502 src/vfs/sftpfs/sftpfs.c     vfs_s_free_inode (vfs_sftpfs_ops, fh->ino);
ino               740 src/vfs/shell/shell.c #define ST ent->ino->st
ino               793 src/vfs/shell/shell.c             ent->ino->linkname = g_strndup (linkname, linkname_bound - linkname);
ino               794 src/vfs/shell/shell.c             temp = ent->ino->linkname;
ino               795 src/vfs/shell/shell.c             ent->ino->linkname = str_shell_unescape (ent->ino->linkname);
ino              1084 src/vfs/shell/shell.c     name = vfs_s_fullpath (me, fh->ino);
ino              1598 src/vfs/shell/shell.c shell_fh_new (struct vfs_s_inode *ino, gboolean changed)
ino              1603 src/vfs/shell/shell.c     vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed);
ino              1624 src/vfs/shell/shell.c         if (fh->ino->localname == NULL)
ino              1629 src/vfs/shell/shell.c             tmp_handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
ino              1633 src/vfs/shell/shell.c             fh->ino->localname = vfs_path_free (vpath, FALSE);
ino              1639 src/vfs/shell/shell.c     if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1)
ino              1642 src/vfs/shell/shell.c     if (fh->ino->localname == NULL)
ino               506 src/vfs/tar/tar.c tar_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               511 src/vfs/tar/tar.c     if (ino->user_data != NULL)
ino               512 src/vfs/tar/tar.c         g_array_free ((GArray *) ino->user_data, TRUE);
ino              1117 src/vfs/tar/tar.c     int fd = TAR_SUPER (fh->ino->super)->fd;
ino              1118 src/vfs/tar/tar.c     const GArray *sm = (const GArray *) fh->ino->user_data;
ino              1137 src/vfs/tar/tar.c             remain = MIN ((off_t) count, fh->ino->st.st_size - fh->pos);
ino              1161 src/vfs/tar/tar.c     int fd = TAR_SUPER (fh->ino->super)->fd;
ino              1162 src/vfs/tar/tar.c     const GArray *sm = (const GArray *) fh->ino->user_data;
ino              1186 src/vfs/tar/tar.c             offset = fh->ino->data_offset;
ino              1221 src/vfs/tar/tar.c     if (file->ino->user_data != NULL)
ino              1230 src/vfs/tar/tar.c         begin += file->ino->data_offset;
ino              1235 src/vfs/tar/tar.c         count = (size_t) MIN ((off_t) count, file->ino->st.st_size - file->pos);
ino                78 src/vfs/undelfs/undelfs.c     ext2_ino_t ino;
ino               229 src/vfs/undelfs/undelfs.c     ext2_ino_t ino;
ino               253 src/vfs/undelfs/undelfs.c     retval = ext2fs_get_next_inode (scan, &ino, &inode);
ino               260 src/vfs/undelfs/undelfs.c     while (ino)
ino               270 src/vfs/undelfs/undelfs.c         lsd.inode = ino;
ino               275 src/vfs/undelfs/undelfs.c         retval = ext2fs_block_iterate (fs, ino, 0, block_buf, undelfs_lsdel_proc, &lsd);
ino               297 src/vfs/undelfs/undelfs.c             delarray[num_delarray].ino = ino;
ino               309 src/vfs/undelfs/undelfs.c         retval = ext2fs_get_next_inode (scan, &ino, &inode);
ino               410 src/vfs/undelfs/undelfs.c         g_snprintf (dirent_dest, MC_MAXPATHLEN, "%ld:%d", (long) delarray[readdir_ptr].ino,
ino               460 src/vfs/undelfs/undelfs.c         if (inode != delarray[i].ino)
ino               615 src/vfs/undelfs/undelfs.c         if (delarray[i].ino == inode)
ino               627 src/vfs/undelfs/undelfs.c     buf->st_ino = delarray[inode_index].ino;
ino               319 tests/lib/vfs/vfs_parse_ls_lga.c                       &ent1->ino->st, &ent1->name, &ent1->ino->linkname, &filepos);
ino               326 tests/lib/vfs/vfs_parse_ls_lga.c                       &ent2->ino->st, &ent2->name, &ent2->ino->linkname, &filepos);
ino               332 tests/lib/vfs/vfs_parse_ls_lga.c     vfs_parse_ls_lga ("drwxrwxr-x   10 500      500          4096 Jun 23 17:09 ..", &ent3->ino->st,
ino               333 tests/lib/vfs/vfs_parse_ls_lga.c                       &ent3->name, &ent3->ino->linkname, &filepos);
ino               350 tests/lib/vfs/vfs_parse_ls_lga.c         if (!vfs_parse_ls_lga (ls_output, &ent[ent_index]->ino->st, &ent[ent_index]->name,         \
ino               351 tests/lib/vfs/vfs_parse_ls_lga.c                                &ent[ent_index]->ino->linkname, &filepos))                          \