Home
last modified time | relevance | path

Searched refs:vtype (Results 1 – 15 of 15) sorted by relevance

/xnu-11215/tools/lldbmacros/
H A Dioreg.py87 vtype = kern.SymbolicateFromAddress(vt)
88 if len(vtype):
89 vtype_str = " <" + vtype[0].GetName() + ">"
145 vtype = kern.SymbolicateFromAddress(vt)
146 if len(vtype):
147 return vtype[0].GetName()
183 vtype = kern.SymbolicateFromAddress(vtableAddr)
184 if vtype is None or len(vtype) < 1:
980 vtype = kern.SymbolicateFromAddress(vt)
981 if len(vtype) > 0:
[all …]
H A Dmemory.py1986 vtype = int(vnode.v_type)
1988 if (vtype == 1) and (vnode.v_un.vu_ubcinfo != 0):
2084 vtype = int(vnode.v_type)
2085 vtype_str = "%d" % vtype
2087 if vtype >= 0 and vtype < len(vnode_types):
2088 vtype_str = vnode_types[vtype]
2104 if (vtype == 1) and (vnode.v_un.vu_ubcinfo != 0):
/xnu-11215/bsd/sys/
H A Dvnode.h90 enum vtype { enum
243 enum vtype vnfs_vtype; /* vnode type */
734 enum vtype va_type; /* file type */
815 extern enum vtype iftovt_tab[];
1054 enum vtype vnode_vtype(vnode_t vp);
2536 int check_mountedon(dev_t dev, enum vtype type, int *errorp);
2549 enum vtype vnode_iftovt(int);
2550 int vnode_vttoif(enum vtype);
2608 errno_t vfs_setup_vattr_from_attrlist(struct attrlist *alp, struct vnode_attr *vap, enum vtype obj_…
/xnu-11215/bsd/miscfs/devfs/
H A Ddevfs_tree.c1121 enum vtype vtype = 0; in devfs_dntovn() local
1232 vtype = VLNK; in devfs_dntovn()
1238 vtype = VDIR; in devfs_dntovn()
1242 vtype = (dnp->dn_type == DEV_BDEV) ? VBLK : VCHR; in devfs_dntovn()
1246 vtype = VDIR; in devfs_dntovn()
1251 vfsp.vnfs_vtype = vtype; in devfs_dntovn()
1258 if (vtype == VBLK || vtype == VCHR) { in devfs_dntovn()
H A Dfdesc.h101 extern int fdesc_allocvp(fdntype, int, struct mount *, struct vnode **, enum vtype, int);
H A Ddevfs_fdesc_support.c203 fdesc_allocvp(fdntype ftype, int ix, struct mount *mp, struct vnode **vpp, enum vtype vtype, int fd… in fdesc_allocvp() argument
231 (*vpp)->v_type = (uint16_t)vtype; in fdesc_allocvp()
250 vfsp.vnfs_vtype = vtype; in fdesc_allocvp()
/xnu-11215/bsd/nfs/
H A Dnfs_subs.c163 vtonfs_type(enum vtype vtype, int nfsvers) in vtonfs_type() argument
165 switch (vtype) { in vtonfs_type()
196 enum vtype
238 vtonfsv2_mode(enum vtype vtype, mode_t m) in vtonfsv2_mode() argument
240 switch (vtype) { in vtonfsv2_mode()
248 return MAKEIMODE(vtype, m); in vtonfsv2_mode()
H A Dnfs.h1207 nfstype vtonfs_type(enum vtype, int);
1208 enum vtype nfstov_type(nfstype, int);
1209 int vtonfsv2_mode(enum vtype, mode_t);
H A Dnfs_serv.c2082 enum vtype v_type; in nfsrv_create()
2366 enum vtype vtyp; in nfsrv_mknod()
2772 enum vtype fvtype, tvtype; in nfsrv_rename()
/xnu-11215/bsd/vfs/
H A Dvfs_attrlist.c736 enum vtype obj_type, ssize_t *fixedsize, int is_64bit, int use_fork) in getattrlist_setupvattr_all()
1711 ATTR_PACK4((*abp), vtype); in attr_pack_common()
1827 if (vtype == VDIR) { in attr_pack_common()
2749 vfs_context_t ctx, int is_bulk, enum vtype vtype, ssize_t fixedsize) in vfs_attr_pack_internal() argument
2986 return_valid, pack_invalid, vtype, is_bulk); in vfs_attr_pack_internal()
2989 if (!error && alp->dirattr && (vtype == VDIR)) { in vfs_attr_pack_internal()
2994 if (!error && alp->fileattr && (vtype != VDIR)) { in vfs_attr_pack_internal()
3089 enum vtype v_type; in vfs_attr_pack_ext()
3160 int vtype = 0; in getattrlist_internal() local
3260 vtype = vp->v_type; in getattrlist_internal()
[all …]
H A Dkpi_vfs.c1750 enum vtype
1757 vnode_vttoif(enum vtype indx) in vnode_vttoif()
1855 enum vtype
2118 enum vtype vt = vp->v_type; in vnode_isaliased()
H A Dvfs_subr.c171 enum vtype iftovt_tab[16] = {
3383 get_vp_from_dev(dev_t dev, enum vtype type, vnode_t *outvp) in get_vp_from_dev()
3421 check_mountedon(dev_t dev, enum vtype type, int *errorp) in check_mountedon()
3456 vnode_cmp_paired_dev(vnode_t vp, vnode_t bdev_vp, enum vtype in_type, in vnode_cmp_paired_dev()
3457 enum vtype out_type) in vnode_cmp_paired_dev()
11656 __vtype(uint16_t vtype) in __vtype() argument
11658 switch (vtype) { in __vtype()
H A Dvfs_syscalls.c8754 enum vtype v_type; in clonefile_internal()
12296 enum vtype vp_vtype; in vfs_materialize_item()
/xnu-11215/bsd/miscfs/bindfs/
H A Dbind_subr.c264 enum vtype type = VDIR; in bind_getnewvnode()
/xnu-11215/bsd/miscfs/nullfs/
H A Dnull_subr.c270 enum vtype type = VDIR; in null_getnewvnode()