Lines Matching refs:op

368 	struct console_font_op op;  in do_fontx_ioctl()  local
378 op.op = KD_FONT_OP_SET; in do_fontx_ioctl()
379 op.flags = KD_FONT_FLAG_OLD; in do_fontx_ioctl()
380 op.width = 8; in do_fontx_ioctl()
381 op.height = cfdarg.charheight; in do_fontx_ioctl()
382 op.charcount = cfdarg.charcount; in do_fontx_ioctl()
383 op.data = cfdarg.chardata; in do_fontx_ioctl()
384 return con_font_op(fg_console, &op); in do_fontx_ioctl()
386 op.op = KD_FONT_OP_GET; in do_fontx_ioctl()
387 op.flags = KD_FONT_FLAG_OLD; in do_fontx_ioctl()
388 op.width = 8; in do_fontx_ioctl()
389 op.height = cfdarg.charheight; in do_fontx_ioctl()
390 op.charcount = cfdarg.charcount; in do_fontx_ioctl()
391 op.data = cfdarg.chardata; in do_fontx_ioctl()
392 i = con_font_op(fg_console, &op); in do_fontx_ioctl()
395 cfdarg.charheight = op.height; in do_fontx_ioctl()
396 cfdarg.charcount = op.charcount; in do_fontx_ioctl()
945 struct console_font_op op; in vt_ioctl() local
948 op.op = KD_FONT_OP_SET; in vt_ioctl()
949 op.flags = KD_FONT_FLAG_OLD | KD_FONT_FLAG_DONT_RECALC; /* Compatibility */ in vt_ioctl()
950 op.width = 8; in vt_ioctl()
951 op.height = 0; in vt_ioctl()
952 op.charcount = 256; in vt_ioctl()
953 op.data = (char *) arg; in vt_ioctl()
954 return con_font_op(fg_console, &op); in vt_ioctl()
958 struct console_font_op op; in vt_ioctl() local
959 op.op = KD_FONT_OP_GET; in vt_ioctl()
960 op.flags = KD_FONT_FLAG_OLD; in vt_ioctl()
961 op.width = 8; in vt_ioctl()
962 op.height = 32; in vt_ioctl()
963 op.charcount = 256; in vt_ioctl()
964 op.data = (char *) arg; in vt_ioctl()
965 return con_font_op(fg_console, &op); in vt_ioctl()
991 struct console_font_op op; in vt_ioctl() local
992 op.op = KD_FONT_OP_SET_DEFAULT; in vt_ioctl()
993 op.data = NULL; in vt_ioctl()
994 i = con_font_op(fg_console, &op); in vt_ioctl()
1003 struct console_font_op op; in vt_ioctl() local
1004 if (copy_from_user(&op, (void *) arg, sizeof(op))) in vt_ioctl()
1006 if (!perm && op.op != KD_FONT_OP_GET) in vt_ioctl()
1008 i = con_font_op(console, &op); in vt_ioctl()
1010 if (copy_to_user((void *) arg, &op, sizeof(op))) in vt_ioctl()