Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dsystem_properties.c307 const char *value, uint8_t valuelen, prop_off_t *off) in new_prop_info() argument
314 info->serial = (valuelen << 24); in new_prop_info()
315 memcpy(info->value, value, valuelen); in new_prop_info()
316 info->value[valuelen] = '\0'; in new_prop_info()
382 uint8_t namelen, const char *value, uint8_t valuelen, in find_property() argument
427 return new_prop_info(name, namelen, value, valuelen, &trie->prop); in find_property()
602 const char *value, unsigned int valuelen) in __system_property_add() argument
609 if (valuelen >= PROP_VALUE_MAX) in __system_property_add()
614 pi = find_property(root_node(), name, namelen, value, valuelen, true); in __system_property_add()
/bionic/libc/include/sys/
D_system_properties.h109 const char *value, unsigned int valuelen);