Searched defs:path_max (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/socket/
H A Dunix_domain_client_socket_posix.cc40 size_t path_max = address->addr_len - offsetof(struct sockaddr_un, sun_path); local
45 if (path_size > path_max)
/external/e2fsprogs/intl/
H A Ddcigettext.c533 size_t path_max; local
536 path_max = (unsigned int) PATH_MAX;
537 path_max += 2; /* The getcwd docs say to do this. */
541 dirname = (char *) alloca (path_max + dirname_len);
545 ret = getcwd (dirname, path_max);
549 path_max += path_max / 2;
550 path_max += PATH_INCR;
/external/lldb/source/Host/common/
H A DFileSpec.cpp913 long path_max = fpathconf (dirfd (dir_path_dir.get()), _PC_NAME_MAX); local
915 if (path_max < __DARWIN_MAXPATHLEN)
916 path_max = __DARWIN_MAXPATHLEN;
919 buf = (struct dirent *) malloc (offsetof (struct dirent, d_name) + path_max + 1);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.cc311 unsigned path_max = PATH_MAX; member in namespace:__sanitizer

Completed in 114 milliseconds