Searched refs:path_max (Results 1 - 18 of 18) sorted by relevance

/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dlrealpath.c115 long path_max = pathconf ("/", _PC_PATH_MAX); local
116 if (path_max > 0)
120 buf = (char *) malloc (path_max);
/freebsd-12-stable/contrib/binutils/libiberty/
H A Dlrealpath.c115 long path_max = pathconf ("/", _PC_PATH_MAX); local
116 if (path_max > 0)
120 buf = (char *) malloc (path_max);
/freebsd-12-stable/contrib/pjdfstest/tests/
H A Dmisc.sh150 path_max=`${fstest} pathconf . _PC_PATH_MAX`
152 path_max=$((path_max-1))
158 [ ${curlen} -lt ${path_max} ] || break
160 name=`echo "${name}" | cut -b -${path_max}`
/freebsd-12-stable/usr.sbin/iovctl/
H A Diovctl.c127 long path_max; local
129 path_max = pathconf("/dev", _PC_PATH_MAX);
130 if (path_max < 0)
133 size = path_max;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_openbsd.h329 extern unsigned path_max;
H A Dsanitizer_platform_limits_solaris.h344 extern unsigned path_max;
H A Dsanitizer_platform_limits_freebsd.h370 extern unsigned path_max;
H A Dsanitizer_platform_limits_openbsd.cpp124 unsigned path_max = PATH_MAX; member in namespace:__sanitizer
H A Dsanitizer_platform_limits_solaris.cpp126 unsigned path_max = PATH_MAX; member in namespace:__sanitizer
H A Dsanitizer_platform_limits_freebsd.cpp167 unsigned path_max = PATH_MAX; member in namespace:__sanitizer
H A Dsanitizer_platform_limits_posix.h768 extern unsigned path_max;
H A Dsanitizer_platform_limits_netbsd.h404 extern unsigned path_max;
H A Dsanitizer_platform_limits_posix.cpp387 unsigned path_max = PATH_MAX; member in namespace:__sanitizer
H A Dsanitizer_platform_limits_netbsd.cpp386 unsigned path_max = PATH_MAX; member in namespace:__sanitizer
H A Dsanitizer_common_interceptors.inc3613 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
/freebsd-12-stable/contrib/gdb/gdb/
H A Dutils.c2926 long path_max = pathconf ("/", _PC_PATH_MAX);
2927 if (path_max > 0)
2930 char *buf = alloca (path_max);
2913 long path_max = pathconf ("/", _PC_PATH_MAX); local
/freebsd-12-stable/sys/sys/
H A Dsyscallsubr.h72 size_t buflen, size_t path_max);
/freebsd-12-stable/sys/kern/
H A Dvfs_cache.c2188 size_t path_max)
2199 if (buflen > path_max)
2200 buflen = path_max;
2187 kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg, size_t buflen, size_t path_max) argument

Completed in 366 milliseconds