OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PROP_NAME_MAX
(Results
1 - 21
of
21
) sorted by null
/frameworks/base/core/java/android/os/
SystemProperties.java
28
public static final int
PROP_NAME_MAX
= 31;
44
if (key.length() >
PROP_NAME_MAX
) {
45
throw new IllegalArgumentException("key.length > " +
PROP_NAME_MAX
);
56
if (key.length() >
PROP_NAME_MAX
) {
57
throw new IllegalArgumentException("key.length > " +
PROP_NAME_MAX
);
71
if (key.length() >
PROP_NAME_MAX
) {
72
throw new IllegalArgumentException("key.length > " +
PROP_NAME_MAX
);
86
if (key.length() >
PROP_NAME_MAX
) {
87
throw new IllegalArgumentException("key.length > " +
PROP_NAME_MAX
);
106
if (key.length() >
PROP_NAME_MAX
) {
[
all
...]
/bionic/libc/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-3/arch-arm/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-4/arch-arm/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-5/arch-arm/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-5/arch-x86/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-8/arch-arm/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/ndk/build/platforms/android-8/arch-x86/usr/include/sys/
system_properties.h
38
#define
PROP_NAME_MAX
32
65
** If name is nonzero, up to
PROP_NAME_MAX
bytes will be
_system_properties.h
64
char name[
PROP_NAME_MAX
];
72
char name[
PROP_NAME_MAX
];
/system/core/toolbox/
watchprops.c
27
char name[
PROP_NAME_MAX
];
/system/core/init/
property_service.c
238
if(strlen(name) >=
PROP_NAME_MAX
) return 0;
279
if(namelen >=
PROP_NAME_MAX
) return -1;
335
char name[
PROP_NAME_MAX
];
379
msg.name[
PROP_NAME_MAX
-1] = 0;
parser.c
543
char prop_name[
PROP_NAME_MAX
+ 1];
546
if (length >
PROP_NAME_MAX
) {
init.c
71
char pname[
PROP_NAME_MAX
];
73
if ((len + 10) >
PROP_NAME_MAX
)
/system/core/libcutils/
properties.c
67
if(strlen(key) >=
PROP_NAME_MAX
) return -1;
96
char name[
PROP_NAME_MAX
];
/bionic/libc/netbsd/resolv/
res_init.c
324
char propname[
PROP_NAME_MAX
];
Completed in 331 milliseconds