HomeSort by relevance Sort by last modified time
    Searched full:prop_len (Results 1 - 2 of 2) sorted by null

  /system/core/reboot/
reboot.c 27 size_t prop_len; local
60 prop_len = snprintf(property_val, sizeof(property_val), "%s,%s", cmd, optarg);
61 if (prop_len >= sizeof(property_val)) {
  /system/core/init/
init_parser.c 213 int prop_len = 0; local
241 while (*c && *c != '}' && prop_len < PROP_NAME_MAX)
242 prop[prop_len++] = *(c++);
245 if (prop_len == PROP_NAME_MAX)
253 prop[prop_len] = '\0';
256 while (*c && prop_len < PROP_NAME_MAX)
257 prop[prop_len++] = *(c++);
258 if (prop_len == PROP_NAME_MAX && *c != '\0') {
262 prop[prop_len] = '\0';
267 if (prop_len == 0)
    [all...]

Completed in 67 milliseconds