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

/freebsd-10.0-release/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-10.0-release/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-10.0-release/tools/regression/pjdfstest/tests/
H A Dmisc.sh126 path_max=`${fstest} pathconf . _PC_PATH_MAX`
128 path_max=$((path_max-1))
134 [ ${curlen} -lt ${path_max} ] || break
136 name=`echo "${name}" | cut -b -${path_max}`
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFileSpec.cpp914 long path_max = fpathconf (dirfd (dir_path_dir.get()), _PC_NAME_MAX); local
916 if (path_max < __DARWIN_MAXPATHLEN)
917 path_max = __DARWIN_MAXPATHLEN;
920 buf = (struct dirent *) malloc (offsetof (struct dirent, d_name) + path_max + 1);
/freebsd-10.0-release/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

Completed in 200 milliseconds