HomeSort by: relevance | last modified time | path
    Searched refs:ntnode (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/fs/ntfs/
ntfs_ihash.h 41 struct ntnode *ntfs_nthashlookup(dev_t, ino_t);
42 struct ntnode *ntfs_nthashget(dev_t, ino_t);
43 void ntfs_nthashins(struct ntnode *);
44 void ntfs_nthashrem(struct ntnode *);
ntfs_subr.h 42 struct ntnode *va_ip;
79 int ntfs_readntvattr_plain(struct ntfsmount *, struct ntnode *,
81 int ntfs_readattr_plain(struct ntfsmount *, struct ntnode *, u_int32_t,
83 int ntfs_readattr(struct ntfsmount *, struct ntnode *, u_int32_t,
93 struct ntvattr * ntfs_findntvattr(struct ntfsmount *, struct ntnode *,
99 int ntfs_ntvattrget(struct ntfsmount *, struct ntnode *, u_int32_t,
101 int ntfs_ntlookup(struct ntfsmount *, ino_t, struct ntnode **);
102 int ntfs_ntget(struct ntnode *);
103 void ntfs_ntref(struct ntnode *);
104 void ntfs_ntrele(struct ntnode *);
    [all...]
ntfs_ihash.c 53 static LIST_HEAD(nthashhead, ntnode) *ntfs_nthashtbl;
77 struct ntnode *ip;
116 struct ntnode *
119 struct ntnode *ip;
134 * Insert the ntnode into the hash table.
137 ntfs_nthashins(struct ntnode *ip)
152 ntfs_nthashrem(struct ntnode *ip)
ntfs_inode.h 52 struct ntnode { struct
56 LIST_ENTRY(ntnode) i_hash;
76 ino_t k_ino; /* Inode number of ntnode. */
86 struct ntnode *f_ip; /* Associated ntnode */
ntfs_vnops.c 117 struct ntnode *ip = FTONT(fp);
173 struct ntnode *ip = FTONT(fp);
201 * Last reference to an ntnode. If necessary, write or delete it.
212 struct ntnode *ip = VTONT(vp);
215 dprintf(("ntfs_inactive: vnode: %p, ntnode: %llu\n", vp,
225 * Reclaim an fnode/ntnode so that it can be used for other purposes.
235 struct ntnode *ip = FTONT(fp);
241 dprintf(("ntfs_reclaim: vnode: %p, ntnode: %llu\n", vp,
273 struct ntnode *ip = VTONT(ap->a_vp);
297 struct ntnode *ip = FTONT(fp)
    [all...]
ntfs_subr.c 77 static int ntfs_findvattr(struct ntfsmount *, struct ntnode *,
108 * find the attribute in the ntnode
111 ntfs_findvattr(struct ntfsmount *ntmp, struct ntnode *ip, struct ntvattr **lvapp,
151 * Search attribute specified in ntnode (load ntnode if necessary).
154 * ntnode should be locked
157 ntfs_ntvattrget(struct ntfsmount *ntmp, struct ntnode *ip, u_int32_t type,
163 struct ntnode *newip;
232 /* XXX have to lock ntnode */
253 * Read ntnode from disk, make ntvattr list
    [all...]
ntfs_vfsops.c 65 MALLOC_JUSTDEFINE(M_NTFSNTNODE,"NTFS ntnode", "NTFS ntnode information");
679 struct ntnode *ntp;
713 struct ntnode *ip;
729 /* Get ntnode */
  /src/usr.bin/fstat/
ntfs.c 53 struct ntnode ntnode; local in function:ntfs_filestat
57 /* to get the ntnode, we have to go in two steps - firstly
59 * of ntnode and reading its contents */
64 if (!KVM_READ(FTONT(&fn), &ntnode, sizeof (ntnode))) {
65 dprintf("can't read ntnode at %p for pid %d", FTONT(&fn), Pid);
68 if (!KVM_READ(ntnode.i_mp, &ntm, sizeof (ntm))) {
74 fsp->fsid = ntnode.i_dev & 0xffff;
75 fsp->fileid = ntnode.i_number
    [all...]

Completed in 14 milliseconds