OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:path_max
(Results
1 - 5
of
5
) sorted by null
/toolchain/binutils/binutils-2.25/libiberty/
lrealpath.c
60
# if defined (
PATH_MAX
)
61
# define REALPATH_LIMIT
PATH_MAX
108
though, some systems do not limit
PATH_MAX
(return -1 for
115
long
path_max
= pathconf ("/", _PC_PATH_MAX);
local
116
if (
path_max
> 0)
118
/*
PATH_MAX
is bounded. */
120
buf = (char *) malloc (
path_max
);
/external/minijail/
minijail0.c
166
const size_t
path_max
= 4096;
local
188
if (strlen(optarg) >=
path_max
) {
192
filter_path = strndup(optarg,
path_max
);
/external/e2fsprogs/intl/
dcigettext.c
171
PATH_MAX
but might cause redefinition warnings when sys/param.h is
181
#if !defined
PATH_MAX
&& defined _PC_PATH_MAX
182
# define
PATH_MAX
(pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
186
#if defined HAVE_SYS_PARAM_H && !defined
PATH_MAX
&& !defined MAXPATHLEN
190
#if !defined
PATH_MAX
&& defined MAXPATHLEN
191
# define
PATH_MAX
MAXPATHLEN
194
#ifndef
PATH_MAX
195
# define
PATH_MAX
_POSIX_PATH_MAX
533
size_t
path_max
;
local
536
path_max
= (unsigned int) PATH_MAX
[
all
...]
/toolchain/binutils/binutils-2.25/intl/
dcigettext.c
166
PATH_MAX
but might cause redefinition warnings when sys/param.h is
176
#if !defined
PATH_MAX
&& defined _PC_PATH_MAX
177
# define
PATH_MAX
(pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
181
#if defined HAVE_SYS_PARAM_H && !defined
PATH_MAX
&& !defined MAXPATHLEN
185
#if !defined
PATH_MAX
&& defined MAXPATHLEN
186
# define
PATH_MAX
MAXPATHLEN
189
#ifndef
PATH_MAX
190
# define
PATH_MAX
_POSIX_PATH_MAX
537
size_t
path_max
;
local
540
path_max
= (unsigned int) PATH_MAX
[
all
...]
/external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc
389
unsigned
path_max
=
PATH_MAX
;
member in namespace:__sanitizer
[
all
...]
Completed in 100 milliseconds