Home
last modified time | relevance | path

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

/external/e2fsprogs/intl/
Ddcigettext.c533 size_t path_max; in DCIGETTEXT() local
536 path_max = (unsigned int) PATH_MAX; in DCIGETTEXT()
537 path_max += 2; /* The getcwd docs say to do this. */ in DCIGETTEXT()
541 dirname = (char *) alloca (path_max + dirname_len); in DCIGETTEXT()
545 ret = getcwd (dirname, path_max); in DCIGETTEXT()
549 path_max += path_max / 2; in DCIGETTEXT()
550 path_max += PATH_INCR; in DCIGETTEXT()
/external/minijail/
Dminijail0.c166 const size_t path_max = 4096; in parse_args() local
188 if (strlen(optarg) >= path_max) { in parse_args()
192 filter_path = strndup(optarg, path_max); in parse_args()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_posix.h701 extern unsigned path_max;
Dsanitizer_platform_limits_posix.cc389 unsigned path_max = PATH_MAX; variable
Dsanitizer_common_interceptors.inc2809 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);