Home
last modified time | relevance | path

Searched refs:ino_t (Results 1 – 25 of 117) sorted by relevance

12345

/titanic_41/usr/src/cmd/backup/restore/
H A Drestore.h71 extern ino_t maxino; /* highest numbered inode in this file system */
99 ino_t e_ino; /* inode number in previous file sys */
126 extern struct entry *lookupino(ino_t);
128 extern struct entry *addentry(char *, ino_t, int);
129 extern void deleteino(ino_t);
142 extern ino_t lowerbnd(ino_t);
143 extern ino_t upperbnd(ino_t);
146 extern ino_t dirlookup(char *);
164 extern ino_t lowerbnd();
165 extern ino_t upperbnd();
[all …]
H A Ddirs.c30 ino_t t_ino;
42 ino_t ino;
82 static ino_t search(ino_t, char *);
91 static struct inotab *allocinotab(ino_t, struct dinode *, off64_t);
93 static struct inotab *inotablookup(ino_t);
95 static ino_t search();
226 treescan(char *pname, ino_t ino, long (*todo)()) in treescan()
350 ino_t
354 ino_t ino; in psearch()
383 static ino_t
[all …]
H A Drestore.c39 ino_t ino;
59 ino_t ino;
113 ino_t ino;
157 ino_t i; in removeoldleaves()
199 ino_t ino;
541 ino_t i; in findunreflinks()
625 ino_t first;
735 ino_t first, next, last; in createfiles()
854 ino_t i; in createlinks()
908 ino_t i; in checkrestore()
[all …]
H A Dsymtab.c41 static void addino(ino_t, struct entry *);
55 ino_t inum; in lookupino()
84 ino_t inum; in addino()
113 ino_t inum; in deleteino()
275 ino_t inum;
371 ino_t inum;
569 ino_t maxino;
582 ino_t i;
645 for (i = 0; !ferror(fp) && i < (ino_t)entrytblsize; i++) {
/titanic_41/usr/src/cmd/backup/dump/
H A Ddump.h90 #define MWORD(m, i) (m[(ino_t)(i-1)/NBBY])
91 #define MBIT(i) ((1<<((ino_t)(i-1)%NBBY))&0xff)
127 ino_t ino; /* current inumber; used globally */
285 extern void saveino(ino_t, struct dinode *);
286 extern void resetino(ino_t);
287 extern long getigen(ino_t);
291 extern int openi(ino_t, long, char *);
319 extern void toslave(void (*)(ino_t), ino_t);
320 extern void doinode(ino_t);
321 extern void dospcl(ino_t);
[all …]
H A Ddumptraverse.c44 ino_t maxino;
154 ino_t ino;
167 ino_t shadow;
174 shadow = (ino_t)(unsigned)(ip->di_shadow);
371 lf_dumpinode(getino((ino_t)(unsigned)(ip->di_shadow)));
378 ino_t savino;
384 *ip = getino((ino_t)(unsigned)((*ip)->di_shadow));
437 ip = getino((ino_t)(unsigned)(ip->di_shadow));
701 if ((ino_t)(dp->d_ino) != ino) {
738 ino_t ino; in getino()
[all …]
H A Dpartial.c39 static void markino(ino_t);
211 markino((ino_t)st->st_ino);
218 ino_t i; in markino()
H A Ddumponline.c39 ino_t id_inumber; /* inode number */
93 ino_t maxino; in allocino()
138 ino_t ino; in resetino()
/titanic_41/usr/src/common/fs/
H A Dufsops.c77 static ino_t find(fileid_t *filep, char *path);
78 static ino_t dlook(fileid_t *filep, char *path);
97 openi(fileid_t *filep, ino_t inode) in openi()
142 static ino_t
147 ino_t inode; in find()
155 return ((ino_t)0); in find()
166 if (r && openi(filep, (ino_t)UFSROOTINO)) in find()
167 return ((ino_t)0); in find()
178 return ((ino_t)UFSROOTINO); in find()
181 return ((ino_t)0); in find()
[all …]
H A Dhsfs.c131 static ino_t dlook(char *, fileid_t *);
132 static int opendir(ino_t, fileid_t *);
133 static ino_t find(char *, fileid_t *);
159 opendir(ino_t inode, fileid_t *filep) in opendir()
194 static ino_t
199 ino_t n; in find()
230 return ((ino_t)n); in find()
233 static ino_t
479 ino_t ino; in bhsfs_open()
/titanic_41/usr/src/stand/lib/fs/ufs/
H A Dufsops.c89 static ino_t find(fileid_t *filep, char *path);
90 static ino_t dlook(fileid_t *filep, char *path);
114 openi(fileid_t *filep, ino_t inode) in openi()
167 static ino_t
172 ino_t inode; in find()
180 return ((ino_t)0); in find()
189 if (r && openi(filep, (ino_t)UFSROOTINO)) in find()
190 return ((ino_t)0); in find()
201 return ((ino_t)UFSROOTINO); in find()
204 return ((ino_t)0); in find()
[all …]
/titanic_41/usr/src/uts/common/sys/
H A Dstat.h74 ino_t st_ino;
91 ino_t st_ino;
112 ino_t st_ino;
219 ino_t st_ino;
245 ino_t st_ino;
280 ino_t st_ino;
H A Dstatfs.h52 ino_t f_files; /* Total number of file nodes (inodes) */
53 ino_t f_ffree; /* Total number of free file nodes */
H A Dtypes.h160 typedef ulong_t ino_t; /* expanded inode type */ typedef
165 typedef u_longlong_t ino_t; /* expanded inode type */ typedef
173 typedef ino_t ino64_t; /* expanded inode type */
H A Dustat.h54 ino_t f_tinode; /* total inodes free */
/titanic_41/usr/src/cmd/fs.d/ufs/ncheck/
H A Dncheck.c75 ino_t ino;
87 ino_t h_ino;
88 ino_t h_pino;
117 ino_t ino;
128 struct htab *lookup(ino_t i, int ef);
132 void pname(ino_t i, int lev);
537 pname(ino_t i, int lev) in pname()
558 lookup(ino_t i, int ef) in lookup()
/titanic_41/usr/src/stand/lib/fs/hsfs/
H A Dhsfsops.c103 static ino_t find(fileid_t *, char *);
104 static ino_t dlook(fileid_t *, char *);
105 static int opendir(fileid_t *, ino_t);
109 static void hs_seti(fileid_t *, struct hs_direct *, ino_t);
124 opendir(fileid_t *filep, ino_t inode) in opendir()
155 static ino_t
160 ino_t inode; in find()
173 return ((ino_t)-1); in find()
192 return ((ino_t)-1); in find()
219 static ino_t
[all …]
/titanic_41/usr/src/cmd/fs.d/ufs/ff/
H A Dff.c75 ino_t ino;
83 ino_t h_ino;
84 ino_t h_pino;
114 ino_t ino;
139 void pname(FILE *stream, ino_t i, int lev);
140 struct htab *lookup(ino_t i, int ef);
143 struct dinode *ginode(ino_t inumber);
596 pname(FILE *stream, ino_t i, int lev) in pname()
620 lookup(ino_t i, int ef) in lookup()
685 ginode(ino_t inumber) in ginode()
/titanic_41/usr/src/uts/common/sys/fs/
H A Dufs_inode.h247 ino_t i_number; /* i number, 1-to-1 with device address */
834 extern int ufs_iget(struct vfs *, ino_t, struct inode **, cred_t *);
835 extern int ufs_iget_alloced(struct vfs *, ino_t, struct inode **,
856 extern int ufs_dircheckpath(ino_t, struct inode *, struct inode *,
864 extern int ufs_xattrdirempty(struct inode *, ino_t, cred_t *);
869 extern int ufs_ialloc(struct inode *, ino_t, mode_t, struct inode **,
871 extern void ufs_ifree(struct inode *, ino_t, mode_t);
878 extern ino_t dirpref(inode_t *);
916 extern inode_t *ufs_alloc_inode(ufsvfs_t *, ino_t);
H A Dfifonode.h80 ino_t fn_ino; /* node id for pipes */
175 extern ino_t fifogetid(void);
/titanic_41/usr/src/lib/libcmdutils/
H A Dlibcmdutils.h78 ino_t node_ino;
122 extern int add_tnode(avl_tree_t **, dev_t, ino_t);
/titanic_41/usr/src/cmd/filesync/
H A Ddatabase.h124 ino_t f_ino; /* inode number of this file */
206 ino_t f_s_inum; /* baseline source inode # */
211 ino_t f_d_inum; /* baseline target inode # */
/titanic_41/usr/src/ucbhead/sys/
H A Dtypes.h179 typedef ulong_t ino_t; /* expanded inode type */ typedef
185 typedef u_longlong_t ino_t; /* expanded inode type */ typedef
200 typedef ino_t ino64_t;
/titanic_41/usr/src/cmd/fs.d/udfs/fsck/
H A Dfsck.h135 ino_t id_number; /* inode number described */
136 ino_t id_parent; /* for DATA nodes, their parent */
242 ino_t allocino();
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dgetcwd.c55 register ino_t ino; in getcwd()
60 ino_t root_ino; in getcwd()

12345