Searched refs:proc_support_long_paths (Results 1 – 4 of 4) sorted by relevance
477 extern bool proc_support_long_paths(proc_t proc);
277 (cnp->cn_pnlen * 2) <= MAXLONGPATHLEN && proc_support_long_paths(p)) { in namei()1854 assert(proc_support_long_paths(vfs_context_proc(ctx)));1883 size_t maxlen = proc_support_long_paths(vfs_context_proc(ctx)) ? MAXLONGPATHLEN : MAXPATHLEN;
107 assert(proc_support_long_paths(p)); in attrlist_build_path()119 } while (err == ENOSPC && proc_support_long_paths(p) && (buflen *= 2) && buflen <= MAXLONGPATHLEN); in attrlist_build_path()1011 attr_max_buffer = proc_support_long_paths(vfs_context_proc(ctx)) ? in getvolattrlist()2816 size_t attr_max_buffer = proc_support_long_paths(vfs_context_proc(ctx)) ? in vfs_attr_pack_internal()3908 size_t attr_max_buffer = proc_support_long_paths(vfs_context_proc(ctx)) ? in readdirattr()4415 size_t attr_max_buffer = proc_support_long_paths(vfs_context_proc(ctx)) ? in setattrlist_internal()
3119 proc_support_long_paths(proc_t p) in proc_support_long_paths() function