Searched refs:vtype (Results 1 - 21 of 21) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_cnode.c83 enum vtype v_type;
540 enum vtype vtype; local
556 vtype = IFTOVT(attrp->ca_mode);
557 issystemfile = (descp->cd_flags & CD_ISMETA) && (vtype == VREG);
616 if ((vtype == VREG || vtype == VDIR) &&
636 (vtype == VDIR) &&
657 if (vtype == VDIR) {
723 vfsp.vnfs_vtype = vtype;
[all...]
H A Dhfs_link.c382 enum vtype v_type;
H A Dhfs_vnops.c396 enum vtype v_type;
3482 enum vtype vnodetype;
H A Dhfs_readwrite.c3157 enum vtype vnodetype;
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/fdesc/
H A Dfdesc.h106 extern int fdesc_allocvp(fdntype, int, struct mount *, struct vnode **, enum vtype);
H A Dfdesc_vnops.c132 enum vtype vtype)
157 (*vpp)->v_type = vtype;
177 vfsp.vnfs_vtype = vtype;
131 fdesc_allocvp(fdntype ftype, int ix, struct mount *mp, struct vnode **vpp, enum vtype vtype) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dvnode.h83 enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD, VSTR, enum
211 enum vtype vnfs_vtype; /* vnode type */
373 enum vtype va_type; /* file type (create only) */
408 extern enum vtype iftovt_tab[];
504 enum vtype vnode_vtype(vnode_t);
530 enum vtype vnode_iftovt(int);
531 int vnode_vttoif(enum vtype);
705 int check_mountedon(dev_t dev, enum vtype type, int *errorp);
H A Dvnode_internal.h444 int check_cdevmounted(dev_t, enum vtype, int *);
/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_vfsops.c1073 enum vtype vtype; local
1315 vtype = IFTOVT(ip->inode.iso_mode);
1317 if (vtype == VFIFO) {
1323 if (vtype == VCHR || vtype == VBLK) {
1335 vfsp.vnfs_vtype = vtype;
1343 else if (vtype == VFIFO )
1345 else if (vtype == VBLK || vtype
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/synthfs/
H A Dsynthfs_util.c92 mode_t mode, __unused proc_t p, enum vtype vtype, vnode_t *vpp)
127 vfsp.vnfs_vtype = vtype;
91 synthfs_newnode(mount_t mp, vnode_t dp, const char *name, unsigned long nodeid, mode_t mode, __unused proc_t p, enum vtype vtype, vnode_t *vpp) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/devfs/
H A Ddevfs_tree.c981 enum vtype vtype = 0; local
1040 vtype = VLNK;
1046 vtype = VDIR;
1050 vtype = (dnp->dn_type == DEV_BDEV) ? VBLK : VCHR;
1054 vfsp.vnfs_vtype = vtype;
1061 if (vtype == VBLK || vtype == VCHR) {
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ffs/
H A Dffs_vfsops.c1263 enum vtype vtype; local
1337 vtype = IFTOVT(ip->i_mode);
1339 vtype = IFTOVT(mode);
1341 if (vtype == VNON) {
1353 vfsp.vnfs_vtype = vtype;
1364 if (vtype == VFIFO )
1366 else if (vtype == VBLK || vtype == VCHR)
1371 if (vtype
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_subs.c123 vtonfs_type(enum vtype vtype, int nfsvers) argument
125 switch (vtype) {
152 enum vtype
186 vtonfsv2_mode(enum vtype vtype, mode_t m) argument
188 if (vtype == VFIFO)
190 return vnode_makeimode(vtype, m);
1117 enum vtype vtype; local
[all...]
H A Dnfs_bio.c1816 enum vtype vtype; local
1836 vtype = vnode_vtype(vp);
1837 if ((vtype != VREG) && (vtype != VDIR)) {
1838 printf("nfs_bioread: type %x unexpected\n", vtype);
1879 if (vtype == VDIR) {
1897 if (vtype == VDIR) {
1912 if (vtype == VDIR) {
1926 if (vtype
[all...]
H A Dnfs.h1022 nfstype vtonfs_type(enum vtype, int);
1023 enum vtype nfstov_type(nfstype, int);
1024 int vtonfsv2_mode(enum vtype, mode_t);
H A Dnfsnode.h272 enum vtype nva_type; /* vnode type (for create) */
H A Dnfs_vnops.c634 enum vtype vtype; local
642 vtype = vnode_vtype(vp);
643 if ((vtype != VREG) && (vtype != VDIR) && (vtype != VLNK))
662 if (vtype == VDIR)
670 if (vtype == VDIR) {
687 if (vtype == VDIR) {
701 if (vtype
902 enum vtype vtype = vnode_vtype(vp); local
[all...]
H A Dnfs_serv.c1874 enum vtype v_type;
2128 enum vtype vtyp;
2512 enum vtype fvtype, tvtype;
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/union/
H A Dunion_subr.c445 enum vtype vtype; local
648 vtype = uppervp->v_type;
650 vtype = lowervp->v_type;
654 vfsp.vnfs_vtype = vtype;
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dkpi_vfs.c1369 enum vtype
1376 vnode_vttoif(enum vtype indx)
1433 enum vtype
H A Dvfs_subr.c138 enum vtype iftovt_tab[16] = {
2179 check_mountedon(dev_t dev, enum vtype type, int *errorp)
4560 panic("vnode_create: unknown vtype %d", vap->va_type);

Completed in 229 milliseconds