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 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 (me, ino->super); ino 861 lib/vfs/direntry.c vfs_s_dir_uptodate (struct vfs_class *me, struct vfs_s_inode *ino) ino 873 lib/vfs/direntry.c return (tim < ino->timestamp); ino 883 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 885 lib/vfs/direntry.c ino = g_try_new0 (struct vfs_s_inode, 1); ino 886 lib/vfs/direntry.c if (ino == NULL) ino 890 lib/vfs/direntry.c ino->st = *initstat; ino 891 lib/vfs/direntry.c ino->super = super; ino 892 lib/vfs/direntry.c ino->subdir = g_queue_new (); ino 893 lib/vfs/direntry.c ino->st.st_nlink = 0; ino 894 lib/vfs/direntry.c ino->st.st_ino = VFS_SUBCLASS (me)->inode_counter++; ino 895 lib/vfs/direntry.c ino->st.st_dev = VFS_SUBCLASS (me)->rdev; ino 899 lib/vfs/direntry.c CALL (init_inode) (me, ino); ino 901 lib/vfs/direntry.c return ino; ino 907 lib/vfs/direntry.c vfs_s_free_inode (struct vfs_class *me, struct vfs_s_inode *ino) ino 909 lib/vfs/direntry.c if (ino == NULL) ino 913 lib/vfs/direntry.c if (ino->st.st_nlink > 1) ino 915 lib/vfs/direntry.c ino->st.st_nlink--; ino 919 lib/vfs/direntry.c while (g_queue_get_length (ino->subdir) != 0) ino 923 lib/vfs/direntry.c entry = VFS_ENTRY (g_queue_peek_head (ino->subdir)); ino 927 lib/vfs/direntry.c g_queue_free (ino->subdir); ino 928 lib/vfs/direntry.c ino->subdir = NULL; ino 930 lib/vfs/direntry.c CALL (free_inode) (me, ino); ino 931 lib/vfs/direntry.c g_free (ino->linkname); ino 932 lib/vfs/direntry.c if ((me->flags & VFSF_USETMP) != 0 && ino->localname != NULL) ino 934 lib/vfs/direntry.c unlink (ino->localname); ino 935 lib/vfs/direntry.c g_free (ino->localname); ino 937 lib/vfs/direntry.c ino->super->ino_usage--; ino 938 lib/vfs/direntry.c g_free (ino); ino 951 lib/vfs/direntry.c entry->ino = inode; ino 952 lib/vfs/direntry.c entry->ino->ent = entry; ino 968 lib/vfs/direntry.c if (ent->ino != NULL) ino 970 lib/vfs/direntry.c ent->ino->ent = NULL; ino 971 lib/vfs/direntry.c vfs_s_free_inode (me, ent->ino); ino 986 lib/vfs/direntry.c ent->ino->st.st_nlink++; ino 1096 lib/vfs/direntry.c return (ent != NULL ? ent->ino : NULL); ino 1239 lib/vfs/direntry.c vfs_s_fullpath (struct vfs_class *me, struct vfs_s_inode *ino) ino 1241 lib/vfs/direntry.c if (ino->ent == NULL) ino 1249 lib/vfs/direntry.c path = g_strdup (ino->ent->name); ino 1255 lib/vfs/direntry.c ino = ino->ent->dir; ino 1256 lib/vfs/direntry.c if (ino == ino->super->root) ino 1259 lib/vfs/direntry.c newpath = g_strconcat (ino->ent->name, PATH_SEP_STR, path, (char *) NULL); ino 1267 lib/vfs/direntry.c if (ino->ent->dir == NULL || ino->ent->dir->ent == NULL) ino 1268 lib/vfs/direntry.c return g_strdup (ino->ent->name); ino 1270 lib/vfs/direntry.c return g_strconcat (ino->ent->dir->ent->name, PATH_SEP_STR, ino->ent->name, (char *) NULL); ino 1276 lib/vfs/direntry.c vfs_s_init_fh (vfs_file_handler_t *fh, struct vfs_s_inode *ino, gboolean changed) ino 1278 lib/vfs/direntry.c fh->ino = ino; ino 1294 lib/vfs/direntry.c struct vfs_s_inode *ino; ino 1304 lib/vfs/direntry.c ino = vfs_s_find_inode (me, super, q, LINK_FOLLOW, FL_NONE); ino 1305 lib/vfs/direntry.c if (ino != NULL && (flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) ino 1313 lib/vfs/direntry.c if (ino == NULL) ino 1331 lib/vfs/direntry.c ino = ent->ino; ino 1339 lib/vfs/direntry.c ino->localname = vfs_path_free (tmp_vpath, FALSE); ino 1353 lib/vfs/direntry.c if (S_ISDIR (ino->st.st_mode)) ino 1359 lib/vfs/direntry.c fh = s->fh_new != NULL ? s->fh_new (ino, was_changed) : vfs_s_new_fh (ino, was_changed); ino 1378 lib/vfs/direntry.c if ((VFS_CLASS (s)->flags & VFSF_USETMP) != 0 && fh->ino->localname != NULL) ino 1380 lib/vfs/direntry.c fh->handle = open (fh->ino->localname, NO_LINEAR (flags), mode); ino 1392 lib/vfs/direntry.c fh->ino->st.st_nlink++; ino 1417 lib/vfs/direntry.c *buf = VFS_FILE_HANDLER (fh)->ino->st; ino 1424 lib/vfs/direntry.c vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino) ino 1431 lib/vfs/direntry.c off_t stat_size = ino->st.st_size; ino 1439 lib/vfs/direntry.c handle = vfs_mkstemps (&tmp_vpath, me->name, ino->ent->name); ino 1440 lib/vfs/direntry.c ino->localname = vfs_path_free (tmp_vpath, FALSE); ino 1447 lib/vfs/direntry.c fh = s->fh_new != NULL ? s->fh_new (ino, FALSE) : vfs_s_new_fh (ino, FALSE); ino 1464 lib/vfs/direntry.c vfs_s_print_stats (me->name, _("Getting file"), ino->ent->name, total, stat_size); ino 1489 lib/vfs/direntry.c unlink (ino->localname); ino 1491 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 284 lib/vfs/vfs.h struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino); ino 285 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 113 src/filemanager/file.c ino_t ino; ino 339 src/filemanager/file.c ino_t ino = sb->st_ino; ino 348 src/filemanager/file.c if (lnk->vfs == class && lnk->ino == ino && lnk->dev == dev) ino 368 src/filemanager/file.c ino_t ino = src_stat->st_ino; ino 384 src/filemanager/file.c if (stat_result == 0 && link_stat.st_ino == ino && link_stat.st_dev == dev) ino 481 src/filemanager/file.c lnk->ino = ino; ino 3119 src/filemanager/file.c lp->ino = src_stat.st_ino; ino 3195 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 vfs_copy_stat_times (st, &entry->ino->st); ino 849 src/vfs/cpio/cpio.c off_t begin = file->ino->data_offset; ino 855 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 581 src/vfs/extfs/extfs.c root_entry->ino->st.st_uid = mystat.st_uid; ino 582 src/vfs/extfs/extfs.c root_entry->ino->st.st_gid = mystat.st_gid; ino 583 src/vfs/extfs/extfs.c root_entry->ino->st.st_atime = mystat.st_atime; ino 584 src/vfs/extfs/extfs.c root_entry->ino->st.st_ctime = mystat.st_ctime; ino 585 src/vfs/extfs/extfs.c root_entry->ino->st.st_mtime = mystat.st_mtime; ino 586 src/vfs/extfs/extfs.c root_entry->ino->ent = root_entry; ino 587 src/vfs/extfs/extfs.c VFS_SUPER (current_archive)->root = root_entry->ino; ino 847 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) ino 860 src/vfs/extfs/extfs.c pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE); ino 1066 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) ino 1069 src/vfs/extfs/extfs.c if (entry->ino->localname == NULL) ino 1089 src/vfs/extfs/extfs.c entry->ino->localname = g_strdup (local_filename); ino 1093 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, NO_LINEAR (flags), mode); ino 1099 src/vfs/extfs/extfs.c local_handle = open (entry->ino->localname, flags, mode); ino 1106 src/vfs/extfs/extfs.c vfs_s_init_fh (extfs_info, entry->ino, created); ino 1142 src/vfs/extfs/extfs.c (" copyin ", EXTFS_SUPER (VFS_FILE_HANDLER_SUPER (fh)), file->ino->ent, ino 1143 src/vfs/extfs/extfs.c file->ino->localname)) ino 1146 src/vfs/extfs/extfs.c if (stat (file->ino->localname, &file_status) != 0) ino 1149 src/vfs/extfs/extfs.c file->ino->st.st_size = file_status.st_size; ino 1151 src/vfs/extfs/extfs.c file->ino->st.st_mtime = time (NULL); ino 1191 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1195 src/vfs/extfs/extfs.c *info = g_queue_peek_head_link (entry->ino->subdir); ino 1273 src/vfs/extfs/extfs.c extfs_stat_move (buf, entry->ino); ino 1302 src/vfs/extfs/extfs.c extfs_stat_move (buf, file->ino); ino 1323 src/vfs/extfs/extfs.c if (!S_ISLNK (entry->ino->st.st_mode)) ino 1328 src/vfs/extfs/extfs.c len = strlen (entry->ino->linkname); ino 1333 src/vfs/extfs/extfs.c memcpy (buf, entry->ino->linkname, result); ino 1389 src/vfs/extfs/extfs.c if (S_ISDIR (entry->ino->st.st_mode)) ino 1434 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1470 src/vfs/extfs/extfs.c if (!S_ISDIR (entry->ino->st.st_mode)) ino 1536 src/vfs/extfs/extfs.c if (fh->ino->localname == NULL) ino 1541 src/vfs/extfs/extfs.c p = vfs_path_from_str (fh->ino->localname); ino 1558 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 502 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 = str_shell_unescape (ent->ino->linkname); ino 1101 src/vfs/shell/shell.c name = vfs_s_fullpath (me, fh->ino); ino 1625 src/vfs/shell/shell.c shell_fh_new (struct vfs_s_inode *ino, gboolean changed) ino 1630 src/vfs/shell/shell.c vfs_s_init_fh (VFS_FILE_HANDLER (fh), ino, changed); ino 1651 src/vfs/shell/shell.c if (fh->ino->localname == NULL) ino 1656 src/vfs/shell/shell.c tmp_handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name); ino 1660 src/vfs/shell/shell.c fh->ino->localname = vfs_path_free (vpath, FALSE); ino 1666 src/vfs/shell/shell.c if (fh->ino->localname == NULL && vfs_s_retrieve_file (me, fh->ino) == -1) ino 1669 src/vfs/shell/shell.c if (fh->ino->localname == NULL) ino 520 src/vfs/tar/tar.c tar_free_inode (struct vfs_class *me, struct vfs_s_inode *ino) ino 525 src/vfs/tar/tar.c if (ino->user_data != NULL) ino 526 src/vfs/tar/tar.c g_array_free ((GArray *) ino->user_data, TRUE); ino 1132 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; ino 1133 src/vfs/tar/tar.c const GArray *sm = (const GArray *) fh->ino->user_data; ino 1152 src/vfs/tar/tar.c remain = MIN ((off_t) count, fh->ino->st.st_size - fh->pos); ino 1176 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; ino 1177 src/vfs/tar/tar.c const GArray *sm = (const GArray *) fh->ino->user_data; ino 1201 src/vfs/tar/tar.c offset = fh->ino->data_offset; ino 1236 src/vfs/tar/tar.c if (file->ino->user_data != NULL) ino 1245 src/vfs/tar/tar.c begin += file->ino->data_offset; ino 1250 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 328 tests/lib/vfs/vfs_parse_ls_lga.c ("drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root1", &ent1->ino->st, ino 329 tests/lib/vfs/vfs_parse_ls_lga.c &ent1->name, &ent1->ino->linkname, &filepos); ino 337 tests/lib/vfs/vfs_parse_ls_lga.c &ent2->ino->st, &ent2->name, &ent2->ino->linkname, &filepos); ino 344 tests/lib/vfs/vfs_parse_ls_lga.c &ent3->ino->st, &ent3->name, &ent3->ino->linkname, &filepos); ino 363 tests/lib/vfs/vfs_parse_ls_lga.c &ent[ent_index]->ino->st, &ent[ent_index]->name, &ent[ent_index]->ino->linkname, &filepos))\