Lines Matching refs:valuelen
44 const char* value, int valuelen ) in boot_property_alloc() argument
46 int length = namelen + 1 + valuelen; in boot_property_alloc()
57 memcpy( p, value, valuelen ); in boot_property_alloc()
58 p += valuelen; in boot_property_alloc()
92 const char* value, int valuelen ) in boot_property_add2() argument
101 if (valuelen > PROPERTY_MAX_VALUE) in boot_property_add2()
122 namelen, name, valuelen, value); in boot_property_add2()
125 prop = boot_property_alloc(name, namelen, value, valuelen); in boot_property_add2()
138 const char* value, int valuelen ) in boot_property_raise_warning() argument
147 valuelen, value); in boot_property_raise_warning()
160 int valuelen = strlen(value); in boot_property_add() local
162 return boot_property_add2(name, namelen, value, valuelen); in boot_property_add()
360 int namelen, valuelen, ret; in boot_property_parse_option() local
371 valuelen = strlen(name) - (namelen+1); in boot_property_parse_option()
373 ret = boot_property_add2(name, namelen, value, valuelen); in boot_property_parse_option()
375 boot_property_raise_warning(ret, name, namelen, value, valuelen); in boot_property_parse_option()