Home
last modified time | relevance | path

Searched refs:ISLASTCN (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.1.9/bsd/vfs/
H A Dvfs_cache.c447 cn.cn_flags = ISLASTCN | ISDOTDOT; in vnode_issubdir()
1845 cnp->cn_flags &= ~(MAKEENTRY | ISLASTCN | ISDOTDOT); in cache_lookup_path()
1848 cnp->cn_flags |= ISLASTCN; in cache_lookup_path()
1885 cnp->cn_flags |= ISLASTCN; in cache_lookup_path()
1955 if ((cnp->cn_flags & (ISLASTCN | ISDOTDOT))) { in cache_lookup_path()
2001 if ((cnp->cn_flags & ISLASTCN) && !vnode_isdir(dp)) { in cache_lookup_path()
2117 if ((cnp->cn_flags & ISLASTCN)) { in cache_lookup_path()
2247 ((cnp->cn_flags & (ISLASTCN | LOCKPARENT | WANTPARENT | SAVESTART)) == ISLASTCN)) { in cache_lookup_path()
2362 ((cnp->cn_flags & (ISLASTCN | LOCKPARENT | WANTPARENT | SAVESTART)) == ISLASTCN)) { in cache_lookup_path()
H A Dvfs_lookup.c1211 cnp->cn_flags |= ISLASTCN; in lookup_handle_emptyname()
1344 if ((cnp->cn_flags & ISLASTCN)) {
1518 …if ((cnp->cn_flags & ISLASTCN) && namei_compound_available(dp, ndp) && !(cnp->cn_flags & CN_WANTSR…
1520 if ((cnp->cn_flags & ISLASTCN) && namei_compound_available(dp, ndp)) {
1766 …if ((cnp->cn_flags & ISLASTCN) && (ndp->ni_flag & NAMEI_TRAILINGSLASH) && !(cnp->cn_flags & WILLBE…
H A Dvfs_xattr.c566 cn.cn_flags = ISLASTCN; in vnode_relenamedstream()
716 cn.cn_flags = ISLASTCN | CN_ALLOWRSRCFORK; in vnode_verifynamedstream()
770 cn.cn_flags = ISLASTCN | MARKISSHADOW; in getshadowfile()
1223 cn.cn_flags = ISLASTCN; in get_shadow_dir()
1243 cn.cn_flags = ISLASTCN; in get_shadow_dir()
H A Dvfs_syscalls.c14891 cnp.cn_flags = ISLASTCN | HASBUF; in snapshot_revert()
15200 cnp.cn_flags = ISLASTCN | HASBUF; in snapshot_root()
/xnu-12377.1.9/bsd/miscfs/devfs/
H A Ddevfs_vnops.c359 if (!(flags & ISLASTCN) || !(op == CREATE || op == RENAME)) { in devfs_lookup()
387 if (op == DELETE && (flags & ISLASTCN)) { in devfs_lookup()
410 if (op == RENAME && wantparent && (flags & ISLASTCN)) { in devfs_lookup()
/xnu-12377.1.9/bsd/sys/
H A Dvnode.h239 #define ISLASTCN 0x00008000 /* this is last component of pathname */ macro