Lines Matching refs:data
126 property->value.data = kcalloc(property->length, sizeof(u32),
128 if (!property->value.data) {
132 parse_dwdata(property->value.data, block + entry->value,
212 * This function parses the XDomain properties data block into format that
271 kfree(property->value.data);
359 * data/text is included right after the directory and each
377 * | data 0 | <------------------|--' |
379 * | data 1 | <------------------|-----'
395 * | data 0 |
447 format_dwdata(&block[data_offset], property->value.data,
480 * @block: Property block where the packed data is placed
541 p->value.data = kmemdup(property->value.data,
544 if (!p->value.data)
602 * tb_property_add_data() - Adds arbitrary data property to directory
606 * @buflen: Number of bytes in the data buffer
625 property->value.data = kzalloc(size, GFP_KERNEL);
626 if (!property->value.data) {
631 memcpy(property->value.data, buf, buflen);