Searched refs:VBOXTSS (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/VMM/include/ |
H A D | SELMInternal.h | 139 VBOXTSS Tss; 142 VBOXTSS TssTrap08;
|
H A D | HMInternal.h | 219 #define HM_VTX_TSS_SIZE (sizeof(VBOXTSS) + 2 * PAGE_SIZE + 1)
|
/vbox/include/VBox/ |
H A D | types.h | 780 typedef struct VBOXTSS struct 850 } VBOXTSS; typedef in typeref:struct:VBOXTSS 853 typedef VBOXTSS *PVBOXTSS; 855 typedef const VBOXTSS *PCVBOXTSS;
|
/vbox/src/VBox/VMM/VMMRC/ |
H A D | TRPMRCHandlersA.asm | 1195 mov eax, [ecx + VBOXTSS.cr3] 1198 movzx eax, word [ecx + VBOXTSS.selLdt] 1207 mov eax, [ecx + VBOXTSS.eip] 1213 mov eax, [ecx + VBOXTSS.eflags] 1216 movzx eax, word [ecx + VBOXTSS.cs] 1218 movzx eax, word [ecx + VBOXTSS.ds] 1220 movzx eax, word [ecx + VBOXTSS.es] 1222 movzx eax, word [ecx + VBOXTSS.fs] 1224 movzx eax, word [ecx + VBOXTSS.gs] 1226 movzx eax, word [ecx + VBOXTSS [all...] |
H A D | SELMRC.cpp | 433 else if ( offRange >= RT_UOFFSETOF(VBOXTSS, esp0) 434 && offRange < RT_UOFFSETOF(VBOXTSS, padding_ss0)) 461 if ( offRange >= RT_UOFFSETOF(VBOXTSS, offIoBitmap) 464 if (offRange - RT_UOFFSETOF(VBOXTSS, offIoBitmap) < sizeof(pGuestTss->offIoBitmap))
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | SELM.cpp | 186 pVM->selm.s.Tss.offIoBitmap = sizeof(VBOXTSS); 391 pDesc->Gen.u16LimitLow = sizeof(VBOXTSS) - 1; 406 pDesc->Gen.u16LimitLow = sizeof(VBOXTSS) - 1; 470 pVM->selm.s.Tss.offIoBitmap = sizeof(VBOXTSS); 492 pVM->selm.s.TssTrap08.offIoBitmap = sizeof(VBOXTSS); 1599 VBOXTSS Tss; 1601 rc = PGMPhysSimpleReadGCPtr(pVCpu, &Tss, GCPtrTss, RT_OFFSETOF(VBOXTSS, IntRedirBitmap)); 1604 && Tss.offIoBitmap < sizeof(VBOXTSS) /* too small */ 1608 cbMonitoredTss = RT_UOFFSETOF(VBOXTSS, padding_ss0); 1632 cbMonitoredTss = RT_OFFSETOF(VBOXTSS, IntRedirBitma [all...] |
/vbox/src/VBox/VMM/VMMAll/ |
H A D | IOMAll.cpp | 840 || cbTss <= sizeof(VBOXTSS)) /** @todo r=bird: Should this really include the interrupt redirection bitmap? */ 851 VBOXSTRICTRC rcStrict = PGMPhysInterpretedRead(pVCpu, pCtxCore, &offIOPB, GCPtrTss + RT_OFFSETOF(VBOXTSS, offIoBitmap), sizeof(offIOPB));
|
H A D | SELMAll.cpp | 881 VBOXTSS tss; 914 rc = PGMPhysSimpleReadGCPtr(pVCpu, &tss, GCPtrTss, sizeof(VBOXTSS));
|
/vbox/src/VBox/VMM/testcase/ |
H A D | tstVMStructSize.cpp | 190 CHECK_SIZE(VBOXTSS, 136);
|
Completed in 72 milliseconds