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

/darwin-on-arm/xnu/bsd/sys/
H A Dfsevents.h160 uint64_t nlink; // only filled in if the vnode is marked as a hardlink member in struct:fse_info
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c686 if ((fse->mode & FSE_MODE_HLINK) && fse->nlink == 0) {
2343 fse->nlink = (uint64_t)vap->va_dirlinkcount;
2345 fse->nlink = (uint64_t)vap->va_nlink;
2382 fse.nlink = vap->va_dirlinkcount;
2384 fse.nlink = vap->va_nlink;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vnops.c767 int nlink; local
781 nlink = cp->c_attr.ca_dircount; /* implied ".." entries */
783 nlink = cp->c_entries;
786 nlink += 2;
790 --nlink;
793 --nlink;
796 VATTR_RETURN(vap, va_nlink, (u_int64_t)nlink);

Completed in 25 milliseconds