Lines Matching defs:value
96 kfree(prop->value);
106 * @name: return value; set to property name in buf
107 * @length: return value; set to length of value
108 * @value: return value; set to the property value in buf
110 * Note that the caller must make copies of the name and value returned,
111 * this function does no allocation or copying of the data. Return value
115 unsigned char **value)
149 /* now we're on the value */
150 *value = tmp;
169 const unsigned char *value, struct property *last)
178 if (!(new->value = kmalloc(length + 1, GFP_KERNEL)))
181 memcpy(new->value, value, length);
182 *(((char *)new->value) + length) = 0;
189 kfree(new->value);
199 unsigned char* value;
217 (buf = parse_next_property(buf, end, &name, &length, &value))) {
220 prop = new_property(name, length, value, last);
276 unsigned char *value;
285 if (parse_next_property(buf, end, &name, &length, &value) == NULL)
288 prop = new_property(name, length, value, NULL);
319 unsigned char *value;
329 next_prop = parse_next_property(buf, end, &name, &length, &value);
336 newprop = new_property(name, length, value, NULL);
341 slb_set_size(*(int *)value);