Lines Matching defs:text
853 static const char text[] = "block ack control, write:\n"
860 return simple_read_from_buffer(user_buf, count, ppos, text,
861 sizeof(text));
928 char text[256];
933 snprintf(text, sizeof(text), "Last command status: %d\n\n%s",
936 return simple_read_from_buffer(user_buf, count, ppos, text,
937 strlen(text) + 1);
2139 static char text[400];
2141 snprintf(text, sizeof(text),
2154 return simple_read_from_buffer(user_buf, count, ppos, text,
2155 sizeof(text));
2231 char *text;
2234 text = kmalloc(text_size, GFP_KERNEL);
2235 if (!text)
2238 n = snprintf(text, text_size,
2261 ret = simple_read_from_buffer(user_buf, count, ppos, text, n);
2263 kfree(text);