Home | History | Annotate | Download | only in src

Lines Matching refs:int10

204     pNv->int10 = NULL;
206 if(xf86LoadSubModule(pScrn, "int10")) {
207 xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Initializing int10\n");
208 pNv->int10 = xf86InitInt10(pEnt->index);
211 if(!pNv->int10) {
214 "Failed to initialize the int10 module; the console "
218 "Failed to initialize the int10 module; this screen "
224 if(primary && pNv->int10) {
225 const xf86Int10InfoPtr int10 = pNv->int10;
228 int10->num = 0x10;
229 int10->ax = 0x4f03;
230 int10->bx = int10->cx = int10->dx = 0;
231 xf86ExecX86int10(int10);
232 pNv->int10Mode = int10->bx & 0x3fff;
455 if(pNv->int10) xf86FreeInt10(pNv->int10);
486 if(pNv->int10 && pNv->int10Mode) {
487 xf86Int10InfoPtr int10 = pNv->int10;
489 /* Use int10 to restore the console mode */
490 int10->num = 0x10;
491 int10->ax = 0x4f02;
492 int10->bx = pNv->int10Mode | 0x8000;
493 int10->cx = int10->dx = 0;
494 xf86ExecX86int10(int10);
523 if(pNv->int10) xf86FreeInt10(pNv->int10);