HomeSort by relevance Sort by last modified time
    Searched refs:PROP_NAME_MAX (Results 126 - 150 of 153) sorted by null

1 2 3 4 56 7

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
_system_properties.h 64 char name[PROP_NAME_MAX];
72 char name[PROP_NAME_MAX];
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
_system_properties.h 64 char name[PROP_NAME_MAX];
72 char name[PROP_NAME_MAX];
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
_system_properties.h 64 char name[PROP_NAME_MAX];
72 char name[PROP_NAME_MAX];
  /bionic/libc/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
_system_properties.h 56 char name[PROP_NAME_MAX];
  /development/ndk/platforms/android-L/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
system_properties.h 38 #define PROP_NAME_MAX 32
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
  /bionic/tests/
system_properties_test.cpp 82 char name[PROP_NAME_MAX];
183 char prop_name[PROP_NAME_MAX];
190 ret = snprintf(prop_name, PROP_NAME_MAX - 1, "property_%d", count);
191 memset(prop_name + ret, 'a', PROP_NAME_MAX - 1 - ret);
194 prop_name[PROP_NAME_MAX - 1] = 0;
197 ret = __system_property_add(prop_name, PROP_NAME_MAX - 1, prop_value, PROP_VALUE_MAX - 1);
208 ret = snprintf(prop_name, PROP_NAME_MAX - 1, "property_%d", i);
209 memset(prop_name + ret, 'a', PROP_NAME_MAX - 1 - ret);
212 prop_name[PROP_NAME_MAX - 1] = 0;
269 char prop_name[PROP_NAME_MAX];
    [all...]
  /system/core/include/cutils/
properties.h 36 #define PROPERTY_KEY_MAX PROP_NAME_MAX
  /system/core/toolbox/
getprop.c 11 char temp[PROP_VALUE_MAX + PROP_NAME_MAX + 16];
watchprops.c 48 char name[PROP_NAME_MAX];
58 char name[PROP_NAME_MAX];
  /bionic/libc/bionic/
system_properties_compat.c 62 char name[PROP_NAME_MAX];
79 if (len >= PROP_NAME_MAX)
system_properties.cpp 637 if (strlen(key) >= PROP_NAME_MAX) return -1;
680 if (namelen >= PROP_NAME_MAX)
  /build/tools/
post_process_props.py 22 # See PROP_NAME_MAX and PROP_VALUE_MAX system_properties.h.
25 PROP_NAME_MAX = 31
63 if len(key) > PROP_NAME_MAX:
66 (key, PROP_NAME_MAX))
  /bionic/benchmarks/
property_benchmark.cpp 73 name_lens[i] = (random() % (PROP_NAME_MAX - 10)) + 10;
74 names[i] = new char[PROP_NAME_MAX + 1];
  /system/core/init/
init_parser.c 211 char prop[PROP_NAME_MAX + 1];
241 while (*c && *c != '}' && prop_len < PROP_NAME_MAX)
245 if (prop_len == PROP_NAME_MAX)
256 while (*c && prop_len < PROP_NAME_MAX)
258 if (prop_len == PROP_NAME_MAX && *c != '\0') {
549 char prop_name[PROP_NAME_MAX + 1];
552 if (length > PROP_NAME_MAX) {
init.c 82 char pname[PROP_NAME_MAX];
84 if ((len + 10) > PROP_NAME_MAX)
721 char buff[PROP_NAME_MAX];
733 char prop[PROP_NAME_MAX];
737 if (cnt < PROP_NAME_MAX)
    [all...]
property_service.c 185 if (namelen >= PROP_NAME_MAX) return false;
309 msg.name[PROP_NAME_MAX-1] = 0;
  /system/core/fs_mgr/
fs_mgr_verity.c 365 ret = PROP_NAME_MAX - strlen(key);
  /system/core/libcutils/
properties.c 144 char name[PROP_NAME_MAX];

Completed in 653 milliseconds

1 2 3 4 56 7