Lines Matching defs:data
543 * Called from vcs_read() to get the unicode data from the screen.
1184 * @vc: virtual console private data
1332 /* Rewrite the requested winsize data with the actual
2653 * @rescan: we return true if we need more (continuation) data
3187 char type, data;
3225 data = vt_get_shift_state();
3226 ret = put_user(data, p);
3230 data = mouse_reporting();
3232 ret = put_user(data, p);
3240 data = vt_get_kmsg_redirect();
3241 ret = put_user(data, p);
3247 if (get_user(data, p+1))
3250 vt_kmsg_redirect(data);
4591 * is up to the actual low-level console-driver convert data into its favorite
4605 if (op->data) {
4606 font.data = kmalloc(max_font_size, GFP_KERNEL);
4607 if (!font.data)
4610 font.data = NULL;
4626 if (op->data && font.charcount > op->charcount)
4637 if (op->data && copy_to_user(op->data, font.data, c))
4641 kfree(font.data);
4653 if (!op->data)
4663 font.data = memdup_user(op->data, size);
4664 if (IS_ERR(font.data))
4665 return PTR_ERR(font.data);
4681 kfree(font.data);
4693 if (!op->data)
4695 else if (strncpy_from_user(name, op->data, MAX_FONT_NAME - 1) < 0)