• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/

Lines Matching refs:cursor_state

264 	if (ops->cursor_state.image.data != src ||
266 ops->cursor_state.image.data = src;
282 if (ops->cursor_state.image.fg_color != fg ||
283 ops->cursor_state.image.bg_color != bg ||
285 ops->cursor_state.image.fg_color = fg;
286 ops->cursor_state.image.bg_color = bg;
290 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->vc_x)) ||
291 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) ||
293 ops->cursor_state.image.dx = vc->vc_font.width * vc->vc_x;
294 ops->cursor_state.image.dy = vc->vc_font.height * y;
298 if (ops->cursor_state.image.height != vc->vc_font.height ||
299 ops->cursor_state.image.width != vc->vc_font.width ||
301 ops->cursor_state.image.height = vc->vc_font.height;
302 ops->cursor_state.image.width = vc->vc_font.width;
306 if (ops->cursor_state.hot.x || ops->cursor_state.hot.y ||
308 ops->cursor_state.hot.x = cursor.hot.y = 0;
314 ops->cursor_state.mask == NULL ||
323 kfree(ops->cursor_state.mask);
324 ops->cursor_state.mask = mask;
360 ops->cursor_state.enable = 0;
365 ops->cursor_state.enable = (use_sw) ? 0 : 1;
370 cursor.image.fg_color = ops->cursor_state.image.fg_color;
371 cursor.image.bg_color = ops->cursor_state.image.bg_color;
372 cursor.image.dx = ops->cursor_state.image.dx;
373 cursor.image.dy = ops->cursor_state.image.dy;
374 cursor.image.height = ops->cursor_state.image.height;
375 cursor.image.width = ops->cursor_state.image.width;
376 cursor.hot.x = ops->cursor_state.hot.x;
377 cursor.hot.y = ops->cursor_state.hot.y;
378 cursor.mask = ops->cursor_state.mask;
379 cursor.enable = ops->cursor_state.enable;