ino 142 lib/vfs/direntry.c if (!S_ISLNK (entry->ino->st.st_mode)) ino 145 lib/vfs/direntry.c linkname = entry->ino->linkname; ino 228 lib/vfs/direntry.c root = ent->ino; ino 254 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 258 lib/vfs/direntry.c ino = vfs_s_find_inode (me, root->super, dirname, follow, flags | FL_DIR); ino 259 lib/vfs/direntry.c ent = vfs_s_find_entry_tree (me, ino, name, follow, flags); ino 269 lib/vfs/direntry.c if (ent != NULL && !VFS_SUBCLASS (me)->dir_uptodate (me, ent->ino)) ino 280 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 282 lib/vfs/direntry.c ino = vfs_s_new_inode (me, root->super, vfs_s_default_stat (me, S_IFDIR | 0755)); ino 283 lib/vfs/direntry.c ent = vfs_s_new_entry (me, path, ino); ino 284 lib/vfs/direntry.c if (VFS_SUBCLASS (me)->dir_load (me, ino, path) == -1) ino 366 lib/vfs/direntry.c vfs_s_new_fh (struct vfs_s_inode *ino, gboolean changed) ino 371 lib/vfs/direntry.c vfs_s_init_fh (fh, ino, changed); ino 395 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 405 lib/vfs/direntry.c ino = ino 409 lib/vfs/direntry.c if (ino == NULL && *q == '\0') ino 411 lib/vfs/direntry.c ino = ino 415 lib/vfs/direntry.c return ino; ino 510 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 512 lib/vfs/direntry.c ino = vfs_s_inode_from_path (vpath, flag); ino 513 lib/vfs/direntry.c if (ino == NULL) ino 515 lib/vfs/direntry.c *buf = ino->st; ino 524 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 528 lib/vfs/direntry.c ino = vfs_s_inode_from_path (vpath, 0); ino 529 lib/vfs/direntry.c if (ino == NULL) ino 534 lib/vfs/direntry.c if (!S_ISLNK (ino->st.st_mode)) ino 540 lib/vfs/direntry.c if (ino->linkname == NULL) ino 546 lib/vfs/direntry.c len = strlen (ino->linkname); ino 550 lib/vfs/direntry.c memcpy (buf, ino->linkname, len); ino 618 lib/vfs/direntry.c off_t size = file->ino->st.st_size; ino 679 lib/vfs/direntry.c s = vfs_s_fullpath (me, file->ino); ino 685 lib/vfs/direntry.c res = sub->file_store (me, fh, s, file->ino->localname); ino 697 lib/vfs/direntry.c vfs_s_free_inode (me, file->ino); ino 767 lib/vfs/direntry.c if ((me->flags & VFSF_USETMP) != 0 && fh->ino != NULL) ino 768 lib/vfs/direntry.c local = vfs_path_from_str_flags (fh->ino->localname, VPF_NO_CANON); ino 804 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 806 lib/vfs/direntry.c ino = vfs_s_inode_from_path (vpath, 0); ino 807 lib/vfs/direntry.c if (ino == NULL) ino 810 lib/vfs/direntry.c ino->super->want_stale = TRUE; ino 813 lib/vfs/direntry.c ino->super->want_stale = FALSE; ino 814 lib/vfs/direntry.c vfs_s_invalidate (path_element->class, ino->super); ino 864 lib/vfs/direntry.c vfs_s_dir_uptodate (struct vfs_class *me, struct vfs_s_inode *ino) ino 876 lib/vfs/direntry.c return (tim < ino->timestamp); ino 886 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 888 lib/vfs/direntry.c ino = g_try_new0 (struct vfs_s_inode, 1); ino 889 lib/vfs/direntry.c if (ino == NULL) ino 893 lib/vfs/direntry.c ino->st = *initstat; ino 894 lib/vfs/direntry.c ino->super = super; ino 895 lib/vfs/direntry.c ino->subdir = g_queue_new (); ino 896 lib/vfs/direntry.c ino->st.st_nlink = 0; ino 897 lib/vfs/direntry.c ino->st.st_ino = VFS_SUBCLASS (me)->inode_counter++; ino 898 lib/vfs/direntry.c ino->st.st_dev = VFS_SUBCLASS (me)->rdev; ino 902 lib/vfs/direntry.c CALL (init_inode) (me, ino); ino 904 lib/vfs/direntry.c return ino; ino 910 lib/vfs/direntry.c vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino) ino 912 lib/vfs/direntry.c if (ino == NULL) ino 916 lib/vfs/direntry.c if (ino->st.st_nlink > 1) ino 918 lib/vfs/direntry.c ino->st.st_nlink--; ino 922 lib/vfs/direntry.c while (g_queue_get_length (ino->subdir) != 0) ino 926 lib/vfs/direntry.c entry = VFS_ENTRY (g_queue_peek_head (ino->subdir)); ino 930 lib/vfs/direntry.c g_queue_free (ino->subdir); ino 931 lib/vfs/direntry.c ino->subdir = NULL; ino 933 lib/vfs/direntry.c CALL (free_inode) (me, ino); ino 934 lib/vfs/direntry.c g_free (ino->linkname); ino 935 lib/vfs/direntry.c if ((me->flags & VFSF_USETMP) != 0 && ino->localname != NULL) ino 937 lib/vfs/direntry.c unlink (ino->localname); ino 938 lib/vfs/direntry.c g_free (ino->localname); ino 940 lib/vfs/direntry.c ino->super->ino_usage--; ino 941 lib/vfs/direntry.c g_free (ino); ino 954 lib/vfs/direntry.c entry->ino = inode; ino 955 lib/vfs/direntry.c entry->ino->ent = entry; ino 971 lib/vfs/direntry.c if (ent->ino != NULL) ino 973 lib/vfs/direntry.c ent->ino->ent = NULL; ino 974 lib/vfs/direntry.c vfs_s_free_inode (me, ent->ino); ino 989 lib/vfs/direntry.c ent->ino->st.st_nlink++; ino 1102 lib/vfs/direntry.c return (ent != NULL ? ent->ino : NULL); ino 1245 lib/vfs/direntry.c vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino) ino 1247 lib/vfs/direntry.c if (ino->ent == NULL) ino 1255 lib/vfs/direntry.c path = g_strdup (ino->ent->name); ino 1261 lib/vfs/direntry.c ino = ino->ent->dir; ino 1262 lib/vfs/direntry.c if (ino == ino->super->root) ino 1265 lib/vfs/direntry.c newpath = g_strconcat (ino->ent->name, PATH_SEP_STR, path, (char *) NULL); ino 1273 lib/vfs/direntry.c if (ino->ent->dir == NULL || ino->ent->dir->ent == NULL) ino 1274 lib/vfs/direntry.c return g_strdup (ino->ent->name); ino 1276 lib/vfs/direntry.c return g_strconcat (ino->ent->dir->ent->name, PATH_SEP_STR, ino->ent->name, (char *) NULL); ino 1282 lib/vfs/direntry.c vfs_s_init_fh (vfs_file_handler_t * fh, struct vfs_s_inode *ino, gboolean changed) ino 1284 lib/vfs/direntry.c fh->ino = ino; ino 1300 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 1310 lib/vfs/direntry.c ino = vfs_s_find_inode (path_element->class, super, q, LINK_FOLLOW, FL_NONE); ino 1311 lib/vfs/direntry.c if (ino != NULL && (flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) ino 1319 lib/vfs/direntry.c if (ino == NULL) ino 1337 lib/vfs/direntry.c ino = ent->ino; ino 1345 lib/vfs/direntry.c ino->localname = vfs_path_free (tmp_vpath, FALSE); ino 1359 lib/vfs/direntry.c if (S_ISDIR (ino->st.st_mode)) ino 1365 lib/vfs/direntry.c fh = s->fh_new != NULL ? s->fh_new (ino, was_changed) : vfs_s_new_fh (ino, was_changed); ino 1384 lib/vfs/direntry.c if ((VFS_CLASS (s)->flags & VFSF_USETMP) != 0 && fh->ino->localname != NULL) ino 1386 lib/vfs/direntry.c fh->handle = open (fh->ino->localname, NO_LINEAR (flags), mode); ino 1398 lib/vfs/direntry.c fh->ino->st.st_nlink++; ino 1423 lib/vfs/direntry.c *buf = VFS_FILE_HANDLER (fh)->ino->st; ino 1430 lib/vfs/direntry.c vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino) ino 1437 lib/vfs/direntry.c off_t stat_size = ino->st.st_size; ino 1445 lib/vfs/direntry.c handle = vfs_mkstemps (&tmp_vpath, me->name, ino->ent->name); ino 1446 lib/vfs/direntry.c ino->localname = vfs_path_free (tmp_vpath, FALSE); ino 1453 lib/vfs/direntry.c fh = s->fh_new != NULL ? s->fh_new (ino, FALSE) : vfs_s_new_fh (ino, FALSE); ino 1470 lib/vfs/direntry.c vfs_s_print_stats (me->name, _("Getting file"), ino->ent->name, total, stat_size); ino 1495 lib/vfs/direntry.c unlink (ino->localname); ino 1497 lib/vfs/direntry.c MC_PTR_FREE (ino->localname); ino 540 lib/vfs/vfs.c vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino) ino 550 lib/vfs/vfs.c vfs_dirent_assign (ret, fname, ino); ino 565 lib/vfs/vfs.c vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino) ino 569 lib/vfs/vfs.c d->d_ino = ino; ino 273 lib/vfs/vfs.h struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino); ino 274 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 103 lib/vfs/xdirentry.h struct vfs_s_inode *ino; ino 123 lib/vfs/xdirentry.h int (*init_inode) (struct vfs_class * me, struct vfs_s_inode * ino); /* optional */ ino 124 lib/vfs/xdirentry.h void (*free_inode) (struct vfs_class * me, struct vfs_s_inode * ino); /* optional */ ino 135 lib/vfs/xdirentry.h vfs_file_handler_t *(*fh_new) (struct vfs_s_inode * ino, gboolean changed); ino 143 lib/vfs/xdirentry.h int (*dir_load) (struct vfs_class * me, struct vfs_s_inode * ino, const char *path); ino 144 lib/vfs/xdirentry.h gboolean (*dir_uptodate) (struct vfs_class * me, struct vfs_s_inode * ino); ino 160 lib/vfs/xdirentry.h void vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino); ino 183 lib/vfs/xdirentry.h char *vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino); ino 185 lib/vfs/xdirentry.h void vfs_s_init_fh (vfs_file_handler_t * fh, struct vfs_s_inode *ino, gboolean changed); ino 192 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 345 src/filemanager/file.c ino_t ino = sb->st_ino; ino 354 src/filemanager/file.c if (lnk->vfs == class && lnk->ino == ino && lnk->dev == dev) ino 374 src/filemanager/file.c ino_t ino = src_stat->st_ino; ino 390 src/filemanager/file.c if (stat_result == 0 && link_stat.st_ino == ino && link_stat.st_dev == dev) ino 487 src/filemanager/file.c lnk->ino = ino; ino 2921 src/filemanager/file.c lp->ino = src_stat.st_ino; ino 2997 src/filemanager/file.c lp->ino = dst_stat.st_ino; ino 815 src/filemanager/mountlist.c ino_t ino; ino 850 src/filemanager/mountlist.c re->ino = statbuf.st_ino; ino 870 src/filemanager/mountlist.c if (re->dev == fi.dev && re->ino == fi.root) ino 463 src/vfs/cpio/cpio.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 471 src/vfs/cpio/cpio.c entry->ino->st.st_mode = st->st_mode; ino 472 src/vfs/cpio/cpio.c entry->ino->st.st_uid = st->st_uid; ino 473 src/vfs/cpio/cpio.c entry->ino->st.st_gid = st->st_gid; ino 475 src/vfs/cpio/cpio.c entry->ino->st.st_atim = st->st_atim; ino 476 src/vfs/cpio/cpio.c entry->ino->st.st_mtim = st->st_mtim; ino 477 src/vfs/cpio/cpio.c entry->ino->st.st_ctim = st->st_ctim; ino 479 src/vfs/cpio/cpio.c entry->ino->st.st_atime = st->st_atime; ino 480 src/vfs/cpio/cpio.c entry->ino->st.st_mtime = st->st_mtime; ino 481 src/vfs/cpio/cpio.c entry->ino->st.st_ctime = st->st_ctime; ino 857 src/vfs/cpio/cpio.c off_t begin = file->ino->data_offset; ino 863 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 1030 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) ino 1033 src/vfs/extfs/extfs.c if (entry->ino->localname == NULL) ino 1053 src/vfs/extfs/extfs.c entry->ino->localname = g_strdup (local_filename); ino 1057 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode); ino 1063 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, flags, mode); ino 1070 src/vfs/extfs/extfs.c vfs_s_init_fh (extfs_info, entry->ino, created); ino 1106 src/vfs/extfs/extfs.c (" copyin ", EXTFS_SUPER (VFS_FILE_HANDLER_SUPER (fh)), file->ino->ent, ino 1107 src/vfs/extfs/extfs.c file->ino->localname)) ino 1110 src/vfs/extfs/extfs.c if (stat (file->ino->localname, &file_status) != 0) ino 1113 src/vfs/extfs/extfs.c file->ino->st.st_size = file_status.st_size; ino 1115 src/vfs/extfs/extfs.c file->ino->st.st_mtime = time (NULL); ino 1155 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1159 src/vfs/extfs/extfs.c *info = g_queue_peek_head_link (entry->ino->subdir); ino 1230 src/vfs/extfs/extfs.c extfs_stat_move (buf, entry->ino); ino 1259 src/vfs/extfs/extfs.c extfs_stat_move (buf, file->ino); ino 1280 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) ino 1288 src/vfs/extfs/extfs.c len = strlen (entry->ino->linkname); ino 1293 src/vfs/extfs/extfs.c memcpy (buf, entry->ino->linkname, result); ino 1349 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) ino 1397 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1433 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1502 src/vfs/extfs/extfs.c if (fh->ino->localname == NULL) ino 1507 src/vfs/extfs/extfs.c p = vfs_path_from_str (fh->ino->localname); ino 1524 src/vfs/extfs/extfs.c if (strcmp (fh->ino->localname, vfs_path_get_last_path_str (local)) == 0) ino 760 src/vfs/fish/fish.c #define ST ent->ino->st ino 814 src/vfs/fish/fish.c ent->ino->linkname = g_strndup (linkname, linkname_bound - linkname); ino 815 src/vfs/fish/fish.c temp = ent->ino->linkname; ino 816 src/vfs/fish/fish.c ent->ino->linkname = strutils_shell_unescape (ent->ino->linkname); ino 1109 src/vfs/fish/fish.c name = vfs_s_fullpath (me, fh->ino); ino 1661 src/vfs/fish/fish.c fish_fh_new (struct vfs_s_inode *ino, gboolean changed) ino 1666 src/vfs/fish/fish.c vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed); ino 1687 src/vfs/fish/fish.c if (fh->ino->localname == NULL) ino 1692 src/vfs/fish/fish.c tmp_handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name); ino 1696 src/vfs/fish/fish.c fh->ino->localname = vfs_path_free (vpath, FALSE); ino 1702 src/vfs/fish/fish.c if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1) ino 1705 src/vfs/fish/fish.c if (fh->ino->localname == NULL) ino 2034 src/vfs/ftpfs/ftpfs.c name = vfs_s_fullpath (me, fh->ino); ino 2298 src/vfs/ftpfs/ftpfs.c ftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed) ino 2303 src/vfs/ftpfs/ftpfs.c vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed); ino 2334 src/vfs/ftpfs/ftpfs.c if (fh->ino->localname == NULL) ino 2339 src/vfs/ftpfs/ftpfs.c handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name); ino 2344 src/vfs/ftpfs/ftpfs.c fh->ino->localname = vfs_path_free (vpath, FALSE); ino 2349 src/vfs/ftpfs/ftpfs.c name = vfs_s_fullpath (me, fh->ino); ino 2368 src/vfs/ftpfs/ftpfs.c if (fh->ino->localname != NULL) ino 2370 src/vfs/ftpfs/ftpfs.c unlink (fh->ino->localname); ino 2371 src/vfs/ftpfs/ftpfs.c MC_PTR_FREE (fh->ino->localname); ino 2376 src/vfs/ftpfs/ftpfs.c if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1) ino 2379 src/vfs/ftpfs/ftpfs.c if (fh->ino->localname == NULL) ino 2389 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 104 src/vfs/sftpfs/file.c sftpfs_fh_new (struct vfs_s_inode * ino, gboolean changed) ino 109 src/vfs/sftpfs/file.c vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed); ino 132 src/vfs/sftpfs/file.c sftpfs_super_t *super = SFTP_SUPER (fh->ino->super); ino 139 src/vfs/sftpfs/file.c name = vfs_s_fullpath (vfs_sftpfs_ops, fh->ino); ino 404 src/vfs/sftpfs/file.c if (fh->pos > fh->ino->st.st_size - offset) ino 409 src/vfs/sftpfs/file.c fh->pos = fh->ino->st.st_size - offset; ino 92 src/vfs/sftpfs/internal.h vfs_file_handler_t *sftpfs_fh_new (struct vfs_s_inode *ino, gboolean changed); ino 143 src/vfs/sftpfs/sftpfs.c path_inode = ent->ino; ino 165 src/vfs/sftpfs/sftpfs.c fh->ino->st.st_nlink++; ino 505 src/vfs/sftpfs/sftpfs.c vfs_s_free_inode (vfs_sftpfs_ops, fh->ino); ino 960 src/vfs/tar/tar.c off_t begin = file->ino->data_offset; ino 967 src/vfs/tar/tar.c count = MIN (count, (size_t) (file->ino->st.st_size - file->pos)); ino 79 src/vfs/undelfs/undelfs.c ext2_ino_t ino; ino 231 src/vfs/undelfs/undelfs.c ext2_ino_t ino; ino 255 src/vfs/undelfs/undelfs.c retval = ext2fs_get_next_inode (scan, &ino, &inode); ino 262 src/vfs/undelfs/undelfs.c while (ino) ino 272 src/vfs/undelfs/undelfs.c lsd.inode = ino; ino 277 src/vfs/undelfs/undelfs.c retval = ext2fs_block_iterate (fs, ino, 0, block_buf, undelfs_lsdel_proc, &lsd); ino 300 src/vfs/undelfs/undelfs.c delarray[num_delarray].ino = ino; ino 312 src/vfs/undelfs/undelfs.c retval = ext2fs_get_next_inode (scan, &ino, &inode); ino 414 src/vfs/undelfs/undelfs.c (long) delarray[readdir_ptr].ino, delarray[readdir_ptr].num_blocks); ino 463 src/vfs/undelfs/undelfs.c if (inode != delarray[i].ino) ino 618 src/vfs/undelfs/undelfs.c if (delarray[i].ino == inode) ino 630 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))\