Lines Matching defs:text
137 property->value.text = kcalloc(property->length, sizeof(u32),
139 if (!property->value.text) {
143 parse_dwdata(property->value.text, block + entry->value,
146 property->value.text[property->length * 4 - 1] = '\0';
275 kfree(property->value.text);
359 * data/text is included right after the directory and each
455 format_dwdata(&block[data_offset], property->value.text,
571 * @text: String to add
573 * Function takes a copy of @text and adds it to the directory.
576 const char *text)
579 size_t size = round_up(strlen(text) + 1, 4);
590 property->value.text = kzalloc(size, GFP_KERNEL);
591 if (!property->value.text) {
596 strcpy(property->value.text, text);