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 =
ino               411 lib/vfs/direntry.c     if (ino == NULL && *q == '\0')
ino               413 lib/vfs/direntry.c         ino =
ino               417 lib/vfs/direntry.c     return ino;
ino               512 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               514 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, flag);
ino               515 lib/vfs/direntry.c     if (ino == NULL)
ino               517 lib/vfs/direntry.c     *buf = ino->st;
ino               526 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               530 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, 0);
ino               531 lib/vfs/direntry.c     if (ino == NULL)
ino               536 lib/vfs/direntry.c     if (!S_ISLNK (ino->st.st_mode))
ino               542 lib/vfs/direntry.c     if (ino->linkname == NULL)
ino               548 lib/vfs/direntry.c     len = strlen (ino->linkname);
ino               552 lib/vfs/direntry.c     memcpy (buf, ino->linkname, len);
ino               620 lib/vfs/direntry.c     off_t size = file->ino->st.st_size;
ino               681 lib/vfs/direntry.c         s = vfs_s_fullpath (me, file->ino);
ino               687 lib/vfs/direntry.c             res = sub->file_store (me, fh, s, file->ino->localname);
ino               699 lib/vfs/direntry.c     vfs_s_free_inode (me, file->ino);
ino               769 lib/vfs/direntry.c         if ((me->flags & VFSF_USETMP) != 0 && fh->ino != NULL)
ino               770 lib/vfs/direntry.c             local = vfs_path_from_str_flags (fh->ino->localname, VPF_NO_CANON);
ino               806 lib/vfs/direntry.c             struct vfs_s_inode *ino;
ino               808 lib/vfs/direntry.c             ino = vfs_s_inode_from_path (vpath, 0);
ino               809 lib/vfs/direntry.c             if (ino == NULL)
ino               812 lib/vfs/direntry.c                 ino->super->want_stale = TRUE;
ino               815 lib/vfs/direntry.c                 ino->super->want_stale = FALSE;
ino               816 lib/vfs/direntry.c                 vfs_s_invalidate (me, ino->super);
ino               866 lib/vfs/direntry.c vfs_s_dir_uptodate (struct vfs_class *me, struct vfs_s_inode *ino)
ino               878 lib/vfs/direntry.c     return (tim < ino->timestamp);
ino               888 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino               890 lib/vfs/direntry.c     ino = g_try_new0 (struct vfs_s_inode, 1);
ino               891 lib/vfs/direntry.c     if (ino == NULL)
ino               895 lib/vfs/direntry.c         ino->st = *initstat;
ino               896 lib/vfs/direntry.c     ino->super = super;
ino               897 lib/vfs/direntry.c     ino->subdir = g_queue_new ();
ino               898 lib/vfs/direntry.c     ino->st.st_nlink = 0;
ino               899 lib/vfs/direntry.c     ino->st.st_ino = VFS_SUBCLASS (me)->inode_counter++;
ino               900 lib/vfs/direntry.c     ino->st.st_dev = VFS_SUBCLASS (me)->rdev;
ino               904 lib/vfs/direntry.c     CALL (init_inode) (me, ino);
ino               906 lib/vfs/direntry.c     return ino;
ino               912 lib/vfs/direntry.c vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               914 lib/vfs/direntry.c     if (ino == NULL)
ino               918 lib/vfs/direntry.c     if (ino->st.st_nlink > 1)
ino               920 lib/vfs/direntry.c         ino->st.st_nlink--;
ino               924 lib/vfs/direntry.c     while (g_queue_get_length (ino->subdir) != 0)
ino               928 lib/vfs/direntry.c         entry = VFS_ENTRY (g_queue_peek_head (ino->subdir));
ino               932 lib/vfs/direntry.c     g_queue_free (ino->subdir);
ino               933 lib/vfs/direntry.c     ino->subdir = NULL;
ino               935 lib/vfs/direntry.c     CALL (free_inode) (me, ino);
ino               936 lib/vfs/direntry.c     g_free (ino->linkname);
ino               937 lib/vfs/direntry.c     if ((me->flags & VFSF_USETMP) != 0 && ino->localname != NULL)
ino               939 lib/vfs/direntry.c         unlink (ino->localname);
ino               940 lib/vfs/direntry.c         g_free (ino->localname);
ino               942 lib/vfs/direntry.c     ino->super->ino_usage--;
ino               943 lib/vfs/direntry.c     g_free (ino);
ino               956 lib/vfs/direntry.c     entry->ino = inode;
ino               957 lib/vfs/direntry.c     entry->ino->ent = entry;
ino               973 lib/vfs/direntry.c     if (ent->ino != NULL)
ino               975 lib/vfs/direntry.c         ent->ino->ent = NULL;
ino               976 lib/vfs/direntry.c         vfs_s_free_inode (me, ent->ino);
ino               991 lib/vfs/direntry.c     ent->ino->st.st_nlink++;
ino              1104 lib/vfs/direntry.c     return (ent != NULL ? ent->ino : NULL);
ino              1247 lib/vfs/direntry.c vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino)
ino              1249 lib/vfs/direntry.c     if (ino->ent == NULL)
ino              1257 lib/vfs/direntry.c         path = g_strdup (ino->ent->name);
ino              1263 lib/vfs/direntry.c             ino = ino->ent->dir;
ino              1264 lib/vfs/direntry.c             if (ino == ino->super->root)
ino              1267 lib/vfs/direntry.c             newpath = g_strconcat (ino->ent->name, PATH_SEP_STR, path, (char *) NULL);
ino              1275 lib/vfs/direntry.c     if (ino->ent->dir == NULL || ino->ent->dir->ent == NULL)
ino              1276 lib/vfs/direntry.c         return g_strdup (ino->ent->name);
ino              1278 lib/vfs/direntry.c     return g_strconcat (ino->ent->dir->ent->name, PATH_SEP_STR, ino->ent->name, (char *) NULL);
ino              1284 lib/vfs/direntry.c vfs_s_init_fh (vfs_file_handler_t * fh, struct vfs_s_inode *ino, gboolean changed)
ino              1286 lib/vfs/direntry.c     fh->ino = ino;
ino              1302 lib/vfs/direntry.c     struct vfs_s_inode *ino;
ino              1312 lib/vfs/direntry.c     ino = vfs_s_find_inode (me, super, q, LINK_FOLLOW, FL_NONE);
ino              1313 lib/vfs/direntry.c     if (ino != NULL && (flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
ino              1321 lib/vfs/direntry.c     if (ino == NULL)
ino              1339 lib/vfs/direntry.c         ino = ent->ino;
ino              1347 lib/vfs/direntry.c             ino->localname = vfs_path_free (tmp_vpath, FALSE);
ino              1361 lib/vfs/direntry.c     if (S_ISDIR (ino->st.st_mode))
ino              1367 lib/vfs/direntry.c     fh = s->fh_new != NULL ? s->fh_new (ino, was_changed) : vfs_s_new_fh (ino, was_changed);
ino              1386 lib/vfs/direntry.c     if ((VFS_CLASS (s)->flags & VFSF_USETMP) != 0 && fh->ino->localname != NULL)
ino              1388 lib/vfs/direntry.c         fh->handle = open (fh->ino->localname, NO_LINEAR (flags), mode);
ino              1400 lib/vfs/direntry.c     fh->ino->st.st_nlink++;
ino              1425 lib/vfs/direntry.c     *buf = VFS_FILE_HANDLER (fh)->ino->st;
ino              1432 lib/vfs/direntry.c vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino)
ino              1439 lib/vfs/direntry.c     off_t stat_size = ino->st.st_size;
ino              1447 lib/vfs/direntry.c     handle = vfs_mkstemps (&tmp_vpath, me->name, ino->ent->name);
ino              1448 lib/vfs/direntry.c     ino->localname = vfs_path_free (tmp_vpath, FALSE);
ino              1455 lib/vfs/direntry.c     fh = s->fh_new != NULL ? s->fh_new (ino, FALSE) : vfs_s_new_fh (ino, FALSE);
ino              1472 lib/vfs/direntry.c         vfs_s_print_stats (me->name, _("Getting file"), ino->ent->name, total, stat_size);
ino              1497 lib/vfs/direntry.c     unlink (ino->localname);
ino              1499 lib/vfs/direntry.c     MC_PTR_FREE (ino->localname);
ino               539 lib/vfs/vfs.c  vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino)
ino               549 lib/vfs/vfs.c      vfs_dirent_assign (ret, fname, ino);
ino               564 lib/vfs/vfs.c  vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino)
ino               568 lib/vfs/vfs.c      d->d_ino = ino;
ino               277 lib/vfs/vfs.h  struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino);
ino               278 lib/vfs/vfs.h  void vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino);
ino                45 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER_SUPER(a) VFS_FILE_HANDLER (a)->ino->super
ino                81 lib/vfs/xdirentry.h     struct vfs_s_inode *ino;    /* ... and its inode */
ino               104 lib/vfs/xdirentry.h     struct vfs_s_inode *ino;
ino               124 lib/vfs/xdirentry.h     int (*init_inode) (struct vfs_class * me, struct vfs_s_inode * ino);        /* optional */
ino               125 lib/vfs/xdirentry.h     void (*free_inode) (struct vfs_class * me, struct vfs_s_inode * ino);       /* optional */
ino               136 lib/vfs/xdirentry.h     vfs_file_handler_t *(*fh_new) (struct vfs_s_inode * ino, gboolean changed);
ino               144 lib/vfs/xdirentry.h     int (*dir_load) (struct vfs_class * me, struct vfs_s_inode * ino, const char *path);
ino               145 lib/vfs/xdirentry.h     gboolean (*dir_uptodate) (struct vfs_class * me, struct vfs_s_inode * ino);
ino               161 lib/vfs/xdirentry.h void vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino);
ino               184 lib/vfs/xdirentry.h char *vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino);
ino               186 lib/vfs/xdirentry.h void vfs_s_init_fh (vfs_file_handler_t * fh, struct vfs_s_inode *ino, gboolean changed);
ino               193 lib/vfs/xdirentry.h int vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino);
ino               114 src/filemanager/file.c     ino_t ino;
ino               347 src/filemanager/file.c     ino_t ino = sb->st_ino;
ino               356 src/filemanager/file.c         if (lnk->vfs == class && lnk->ino == ino && lnk->dev == dev)
ino               376 src/filemanager/file.c     ino_t ino = src_stat->st_ino;
ino               392 src/filemanager/file.c         if (stat_result == 0 && link_stat.st_ino == ino && link_stat.st_dev == dev)
ino               489 src/filemanager/file.c         lnk->ino = ino;
ino              3062 src/filemanager/file.c     lp->ino = src_stat.st_ino;
ino              3138 src/filemanager/file.c         lp->ino = dst_stat.st_ino;
ino               818 src/filemanager/mountlist.c             ino_t ino;
ino               853 src/filemanager/mountlist.c                     re->ino = statbuf.st_ino;
ino               873 src/filemanager/mountlist.c                     if (re->dev == fi.dev && re->ino == fi.root)
ino               462 src/vfs/cpio/cpio.c         if (!S_ISDIR (entry->ino->st.st_mode))
ino               470 src/vfs/cpio/cpio.c             entry->ino->st.st_mode = st->st_mode;
ino               471 src/vfs/cpio/cpio.c             entry->ino->st.st_uid = st->st_uid;
ino               472 src/vfs/cpio/cpio.c             entry->ino->st.st_gid = st->st_gid;
ino               474 src/vfs/cpio/cpio.c             entry->ino->st.st_atim = st->st_atim;
ino               475 src/vfs/cpio/cpio.c             entry->ino->st.st_mtim = st->st_mtim;
ino               476 src/vfs/cpio/cpio.c             entry->ino->st.st_ctim = st->st_ctim;
ino               478 src/vfs/cpio/cpio.c             entry->ino->st.st_atime = st->st_atime;
ino               479 src/vfs/cpio/cpio.c             entry->ino->st.st_mtime = st->st_mtime;
ino               480 src/vfs/cpio/cpio.c             entry->ino->st.st_ctime = st->st_ctime;
ino               856 src/vfs/cpio/cpio.c     off_t begin = file->ino->data_offset;
ino               862 src/vfs/cpio/cpio.c     count = MIN (count, (size_t) (file->ino->st.st_size - file->pos));
ino               157 src/vfs/extfs/extfs.c     entry->ino = inode;
ino               269 src/vfs/extfs/extfs.c             if (!S_ISDIR (pent->ino->st.st_mode))
ino               277 src/vfs/extfs/extfs.c             pl = g_queue_find_custom (pent->ino->subdir, p, vfs_s_entry_compare);
ino               283 src/vfs/extfs/extfs.c                 notadir = !S_ISDIR (pent->ino->st.st_mode);
ino               289 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFDIR | 0777);
ino               291 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFREG | 0666);
ino               337 src/vfs/extfs/extfs.c extfs_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               341 src/vfs/extfs/extfs.c     if (ino->localname != NULL)
ino               343 src/vfs/extfs/extfs.c         unlink (ino->localname);
ino               344 src/vfs/extfs/extfs.c         MC_PTR_FREE (ino->localname);
ino               444 src/vfs/extfs/extfs.c                 entry = extfs_entry_new (super->me, p, pent->ino);
ino               445 src/vfs/extfs/extfs.c                 entry->dir = pent->ino;
ino               446 src/vfs/extfs/extfs.c                 g_queue_push_tail (pent->ino->subdir, entry);
ino               464 src/vfs/extfs/extfs.c                 pent->ino->st.st_nlink++;
ino               465 src/vfs/extfs/extfs.c                 entry->ino = pent->ino;
ino               491 src/vfs/extfs/extfs.c                 entry->ino = inode;
ino               578 src/vfs/extfs/extfs.c     root_entry->ino->st.st_uid = mystat.st_uid;
ino               579 src/vfs/extfs/extfs.c     root_entry->ino->st.st_gid = mystat.st_gid;
ino               580 src/vfs/extfs/extfs.c     root_entry->ino->st.st_atime = mystat.st_atime;
ino               581 src/vfs/extfs/extfs.c     root_entry->ino->st.st_ctime = mystat.st_ctime;
ino               582 src/vfs/extfs/extfs.c     root_entry->ino->st.st_mtime = mystat.st_mtime;
ino               583 src/vfs/extfs/extfs.c     root_entry->ino->ent = root_entry;
ino               584 src/vfs/extfs/extfs.c     VFS_SUPER (current_archive)->root = root_entry->ino;
ino               839 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
ino               852 src/vfs/extfs/extfs.c         pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE);
ino              1058 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
ino              1061 src/vfs/extfs/extfs.c     if (entry->ino->localname == NULL)
ino              1081 src/vfs/extfs/extfs.c         entry->ino->localname = g_strdup (local_filename);
ino              1085 src/vfs/extfs/extfs.c     local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode);
ino              1091 src/vfs/extfs/extfs.c         local_handle = open (entry->ino->localname, flags, mode);
ino              1098 src/vfs/extfs/extfs.c     vfs_s_init_fh (extfs_info, entry->ino, created);
ino              1134 src/vfs/extfs/extfs.c             (" copyin ", EXTFS_SUPER (VFS_FILE_HANDLER_SUPER (fh)), file->ino->ent,
ino              1135 src/vfs/extfs/extfs.c              file->ino->localname))
ino              1138 src/vfs/extfs/extfs.c         if (stat (file->ino->localname, &file_status) != 0)
ino              1141 src/vfs/extfs/extfs.c             file->ino->st.st_size = file_status.st_size;
ino              1143 src/vfs/extfs/extfs.c         file->ino->st.st_mtime = time (NULL);
ino              1183 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1187 src/vfs/extfs/extfs.c     *info = g_queue_peek_head_link (entry->ino->subdir);
ino              1258 src/vfs/extfs/extfs.c     extfs_stat_move (buf, entry->ino);
ino              1287 src/vfs/extfs/extfs.c     extfs_stat_move (buf, file->ino);
ino              1308 src/vfs/extfs/extfs.c     if (!S_ISLNK (entry->ino->st.st_mode))
ino              1313 src/vfs/extfs/extfs.c     len = strlen (entry->ino->linkname);
ino              1318 src/vfs/extfs/extfs.c     memcpy (buf, entry->ino->linkname, result);
ino              1374 src/vfs/extfs/extfs.c     if (S_ISDIR (entry->ino->st.st_mode))
ino              1419 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1455 src/vfs/extfs/extfs.c     if (!S_ISDIR (entry->ino->st.st_mode))
ino              1521 src/vfs/extfs/extfs.c     if (fh->ino->localname == NULL)
ino              1526 src/vfs/extfs/extfs.c     p = vfs_path_from_str (fh->ino->localname);
ino              1543 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              2297 src/vfs/ftpfs/ftpfs.c ftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed)
ino              2302 src/vfs/ftpfs/ftpfs.c     vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed);
ino              2333 src/vfs/ftpfs/ftpfs.c             if (fh->ino->localname == NULL)
ino              2338 src/vfs/ftpfs/ftpfs.c                 handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
ino              2343 src/vfs/ftpfs/ftpfs.c                 fh->ino->localname = vfs_path_free (vpath, FALSE);
ino              2348 src/vfs/ftpfs/ftpfs.c         name = vfs_s_fullpath (me, fh->ino);
ino              2367 src/vfs/ftpfs/ftpfs.c         if (fh->ino->localname != NULL)
ino              2369 src/vfs/ftpfs/ftpfs.c             unlink (fh->ino->localname);
ino              2370 src/vfs/ftpfs/ftpfs.c             MC_PTR_FREE (fh->ino->localname);
ino              2375 src/vfs/ftpfs/ftpfs.c     if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1)
ino              2378 src/vfs/ftpfs/ftpfs.c     if (fh->ino->localname == NULL)
ino              2388 src/vfs/ftpfs/ftpfs.c     if (fh->handle != -1 && fh->ino->localname == NULL)
ino              1157 src/vfs/ftpfs/ftpfs_parse_ls.c                 nlink = info->ino->st.st_nlink;
ino              1158 src/vfs/ftpfs/ftpfs_parse_ls.c                 ok = (*line_parsers[i]) (tmp_line, &info->ino->st, &info->name,
ino              1159 src/vfs/ftpfs/ftpfs_parse_ls.c                                          &info->ino->linkname, &err[i]);
ino              1162 src/vfs/ftpfs/ftpfs_parse_ls.c                     info->ino->st.st_nlink = nlink;     /* Ouch, we need to preserve our counts :-( */
ino              1198 src/vfs/ftpfs/ftpfs_parse_ls.c             nlink = info->ino->st.st_nlink;
ino              1199 src/vfs/ftpfs/ftpfs_parse_ls.c             ok = guessed_parser (tmp_line, &info->ino->st, &info->name, &info->ino->linkname,
ino              1203 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               407 src/vfs/sftpfs/file.c         if (fh->pos > fh->ino->st.st_size - offset)
ino               412 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               507 src/vfs/sftpfs/sftpfs.c     vfs_s_free_inode (vfs_sftpfs_ops, fh->ino);
ino               755 src/vfs/shell/shell.c #define ST ent->ino->st
ino               809 src/vfs/shell/shell.c                 ent->ino->linkname = g_strndup (linkname, linkname_bound - linkname);
ino               810 src/vfs/shell/shell.c                 temp = ent->ino->linkname;
ino               811 src/vfs/shell/shell.c                 ent->ino->linkname = strutils_shell_unescape (ent->ino->linkname);
ino              1105 src/vfs/shell/shell.c     name = vfs_s_fullpath (me, fh->ino);
ino              1657 src/vfs/shell/shell.c shell_fh_new (struct vfs_s_inode *ino, gboolean changed)
ino              1662 src/vfs/shell/shell.c     vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed);
ino              1683 src/vfs/shell/shell.c         if (fh->ino->localname == NULL)
ino              1688 src/vfs/shell/shell.c             tmp_handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
ino              1692 src/vfs/shell/shell.c             fh->ino->localname = vfs_path_free (vpath, FALSE);
ino              1698 src/vfs/shell/shell.c     if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1)
ino              1701 src/vfs/shell/shell.c     if (fh->ino->localname == NULL)
ino               517 src/vfs/tar/tar.c tar_free_inode (struct vfs_class *me, struct vfs_s_inode *ino)
ino               522 src/vfs/tar/tar.c     if (ino->user_data != NULL)
ino               523 src/vfs/tar/tar.c         g_array_free ((GArray *) ino->user_data, TRUE);
ino              1131 src/vfs/tar/tar.c     int fd = TAR_SUPER (fh->ino->super)->fd;
ino              1132 src/vfs/tar/tar.c     const GArray *sm = (const GArray *) fh->ino->user_data;
ino              1151 src/vfs/tar/tar.c             remain = MIN ((off_t) count, fh->ino->st.st_size - fh->pos);
ino              1175 src/vfs/tar/tar.c     int fd = TAR_SUPER (fh->ino->super)->fd;
ino              1176 src/vfs/tar/tar.c     const GArray *sm = (const GArray *) fh->ino->user_data;
ino              1200 src/vfs/tar/tar.c             offset = fh->ino->data_offset;
ino              1235 src/vfs/tar/tar.c     if (file->ino->user_data != NULL)
ino              1244 src/vfs/tar/tar.c         begin += file->ino->data_offset;
ino              1249 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               298 src/vfs/undelfs/undelfs.c             delarray[num_delarray].ino = ino;
ino               310 src/vfs/undelfs/undelfs.c         retval = ext2fs_get_next_inode (scan, &ino, &inode);
ino               412 src/vfs/undelfs/undelfs.c                     (long) delarray[readdir_ptr].ino, delarray[readdir_ptr].num_blocks);
ino               461 src/vfs/undelfs/undelfs.c         if (inode != delarray[i].ino)
ino               616 src/vfs/undelfs/undelfs.c         if (delarray[i].ino == inode)
ino               628 src/vfs/undelfs/undelfs.c     buf->st_ino = delarray[inode_index].ino;
ino               331 tests/lib/vfs/vfs_parse_ls_lga.c         ("drwxrwxr-x   10 500      500          4096 Jun 23 17:09      build_root1", &ent1->ino->st,
ino               332 tests/lib/vfs/vfs_parse_ls_lga.c          &ent1->name, &ent1->ino->linkname, &filepos);
ino               340 tests/lib/vfs/vfs_parse_ls_lga.c                       &ent2->ino->st, &ent2->name, &ent2->ino->linkname, &filepos);
ino               347 tests/lib/vfs/vfs_parse_ls_lga.c                       &ent3->ino->st, &ent3->name, &ent3->ino->linkname, &filepos);
ino               366 tests/lib/vfs/vfs_parse_ls_lga.c     &ent[ent_index]->ino->st, &ent[ent_index]->name, &ent[ent_index]->ino->linkname, &filepos))\