Lines Matching refs:value
96 kfree(prop->value); in release_prop_list()
115 unsigned char **value) in parse_next_property() argument
150 *value = tmp; in parse_next_property()
169 const unsigned char *value, struct property *last) in new_property() argument
178 if (!(new->value = kmalloc(length + 1, GFP_KERNEL))) in new_property()
181 memcpy(new->value, value, length); in new_property()
182 *(((char *)new->value) + length) = 0; in new_property()
189 kfree(new->value); in new_property()
199 unsigned char* value; in do_add_node() local
217 (buf = parse_next_property(buf, end, &name, &length, &value))) { in do_add_node()
220 prop = new_property(name, length, value, last); in do_add_node()
276 unsigned char *value; in do_add_property() local
285 if (parse_next_property(buf, end, &name, &length, &value) == NULL) in do_add_property()
288 prop = new_property(name, length, value, NULL); in do_add_property()
319 unsigned char *value; in do_update_property() local
329 next_prop = parse_next_property(buf, end, &name, &length, &value); in do_update_property()
336 newprop = new_property(name, length, value, NULL); in do_update_property()
341 slb_set_size(*(int *)value); in do_update_property()