Searched refs:nlink (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/bsd/sys/
H A Dfsevents.h162 uint64_t nlink; // only filled in if the vnode is marked as a hardlink member in struct:fse_info
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_fsevents.c716 if ((fse->mode & FSE_MODE_HLINK) && fse->nlink == 0) {
2411 fse->nlink = (uint64_t)vap->va_dirlinkcount;
2413 fse->nlink = (uint64_t)vap->va_nlink;
2450 fse.nlink = vap->va_dirlinkcount;
2452 fse.nlink = vap->va_nlink;
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_vnops.c960 int nlink; local
974 nlink = cp->c_attr.ca_dircount; /* implied ".." entries */
976 nlink = cp->c_entries;
979 nlink += 2;
983 --nlink;
986 --nlink;
989 VATTR_RETURN(vap, va_nlink, (u_int64_t)nlink);

Completed in 43 milliseconds