Home
last modified time | relevance | path

Searched refs:prop_len (Results 1 – 2 of 2) sorted by relevance

/system/core/reboot/
Dreboot.c27 size_t prop_len; in main() local
60 prop_len = snprintf(property_val, sizeof(property_val), "%s,%s", cmd, optarg); in main()
61 if (prop_len >= sizeof(property_val)) { in main()
/system/core/init/
Dinit_parser.cpp251 int prop_len = 0; in expand_props() local
279 while (*c && *c != '}' && prop_len < PROP_NAME_MAX) in expand_props()
280 prop[prop_len++] = *(c++); in expand_props()
283 if (prop_len == PROP_NAME_MAX) in expand_props()
291 prop[prop_len] = '\0'; in expand_props()
294 while (*c && prop_len < PROP_NAME_MAX) in expand_props()
295 prop[prop_len++] = *(c++); in expand_props()
296 if (prop_len == PROP_NAME_MAX && *c != '\0') { in expand_props()
300 prop[prop_len] = '\0'; in expand_props()
305 if (prop_len == 0) { in expand_props()