/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibEvent.cpp | 45 * @param fMask The events we want to wait for, or-ed together. 51 VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents) argument 53 LogFlow(("VbglR3WaitEvent: fMask=0x%x, cMillies=%u, pfEvents=%p\n", 54 fMask, cMillies, pfEvents)); 55 AssertReturn((fMask & ~VMMDEV_EVENT_VALID_EVENT_MASK) == 0, VERR_INVALID_PARAMETER); 60 waitEvent.u32EventMaskIn = fMask;
|
/vbox/src/VBox/Devices/USB/testcase/ |
H A D | tstOhciRegisterAccess.cpp | 78 uint32_t fMask; member in struct:__anon15967 133 uExpectedValue = uChangedValue & s_aRegs[i].fMask; 158 uExpectedValue = (uChangedValue & UINT32_C(0xffff) << iWord * 16) & s_aRegs[i].fMask; 185 uExpectedValue = (uChangedValue & UINT32_C(0x00ffff00)) & s_aRegs[i].fMask; 209 uExpectedValue = (uChangedValue & UINT32_C(0xff) << iByte * 8) & s_aRegs[i].fMask;
|
/vbox/include/iprt/ |
H A D | cpuset.h | 255 * @param fMask The mask. 257 DECLINLINE(PRTCPUSET) RTCpuSetFromU64(PRTCPUSET pSet, uint64_t fMask) argument 261 pSet->bmSet[0] = fMask;
|
/vbox/src/VBox/Storage/ |
H A D | VDIfVfs.cpp | 247 static DECLCALLBACK(int) vdIfVfsFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 251 NOREF(fMask);
|
H A D | VDVfs.cpp | 374 static DECLCALLBACK(int) vdVfsFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 378 NOREF(fMask);
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | PGMAllMap.cpp | 133 * The existing flags are ANDed with the fMask and ORed with the fFlags. 140 * @param fMask The AND mask - page flags X86_PTE_*, excluding the page mask of course. 142 VMMDECL(int) PGMMapModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask) argument 181 pCur->aPTs[iPT].CTX_SUFF(pPT)->a[iPTE].u &= fMask | X86_PTE_PG_MASK; 188 & (fMask | X86_PTE_PAE_PG_MASK))
|
H A D | PGMAll.cpp | 844 * The existing flags are ANDed with the fMask and ORed with the fFlags. 850 * @param fMask The AND mask - page flags X86_PTE_*. 855 DECLINLINE(int) pdmShwModifyPage(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags) argument 864 int rc = PGM_SHW_PFN(ModifyPage, pVCpu)(pVCpu, GCPtr, PAGE_SIZE, fFlags, fMask, fOpFlags); 1509 * The existing flags are ANDed with the fMask and ORed with the fFlags. 1516 * @param fMask The AND mask - page flags X86_PTE_*, excluding the page mask of course. 1519 VMMDECL(int) PGMGstModifyPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask) argument 1530 LogFlow(("PGMGstModifyPage %RGv %d bytes fFlags=%08llx fMask=%08llx\n", GCPtr, cb, fFlags, fMask)); 1542 int rc = PGM_GST_PFN(ModifyPage, pVCpu)(pVCpu, GCPtr, cb, fFlags, fMask); [all...] |
/vbox/src/VBox/VMM/VMMR3/ |
H A D | DBGFR3Trace.cpp | 59 uint32_t fMask; member in struct:__anon16847 328 pVM->aCpus[iCpu].fTraceGroups |= g_aVmmTpGroups[i].fMask; 331 pVM->aCpus[iCpu].fTraceGroups &= ~g_aVmmTpGroups[i].fMask; 389 if (g_aVmmTpGroups[i].fMask & fTraceGroups)
|
H A D | VMEmt.cpp | 318 static DECLCALLBACK(int) vmR3HaltOldDoHalt(PUVMCPU pUVCpu, const uint32_t fMask, uint64_t /* u64Now*/) argument 341 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 346 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 477 static DECLCALLBACK(int) vmR3HaltMethod1Halt(PUVMCPU pUVCpu, const uint32_t fMask, uint64_t u64Now) argument 540 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 549 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 663 static DECLCALLBACK(int) vmR3HaltGlobal1Halt(PUVMCPU pUVCpu, const uint32_t fMask, uint64_t u64Now) argument 689 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 699 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 709 || VMCPU_FF_IS_PENDING(pVCpu, fMask)) 1058 const uint32_t fMask = !fIgnoreInterrupts local [all...] |
H A D | CPUMDbg.cpp | 387 uint64_t fMask; local 393 fMask = pfMask->u64; 398 fMask = pfMask->u32; 404 if (fMask != fMaskMax) 410 u64Value = (u64FullValue & ~fMask) 411 | (u64Value & fMask); 467 uint64_t fMask; local 473 fMask = pfMask->u64; 478 fMask = pfMask->u32; 484 if (fMask ! 543 uint64_t fMask; local [all...] |
/vbox/src/VBox/Runtime/common/dvm/ |
H A D | dvmvfs.cpp | 239 static DECLCALLBACK(int) rtDvmVfsFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 243 NOREF(fMask);
|
/vbox/src/VBox/Additions/common/VBoxGuest/ |
H A D | VBoxGuestInternal.h | 122 uint32_t fMask; member in struct:VBOXGUESTBITUSAGETRACER
|
H A D | VBoxGuest-linux.c | 864 unsigned int fMask = pSession->u32MousePosChangedSeq != u32CurSeq local 868 return fMask;
|
H A D | VBoxGuest.cpp | 2470 pTracker->fMask = 0; 2476 * Checks that pTracker->fMask is correct and that the usage values are within 2485 uint32_t fMask = 0; local 2492 fMask |= RT_BIT_32(iBit); 2497 AssertMsg(fMask == pTracker->fMask, ("%s: %#x vs %#x\n", pszWhat, fMask, pTracker->fMask)); 2533 pTracker->fMask &= ~fBitMask; 2544 pTracker->fMask | [all...] |
/vbox/src/VBox/Runtime/common/vfs/ |
H A D | vfsstdfile.cpp | 307 static DECLCALLBACK(int) rtVfsStdFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 310 if (fMask != ~RTFS_TYPE_MASK) 317 fMode |= ~fMask & fCurMode; 323 fMode |= ~fMask & ObjInfo.Attr.fMode;
|
H A D | vfsbase.cpp | 1874 RTDECL(int) RTVfsSymlinkSetMode(RTVFSSYMLINK hVfsSym, RTFMODE fMode, RTFMODE fMask) argument 1885 int rc = pThis->pOps->ObjSet.pfnSetMode(pThis->Base.pvThis, fMode, fMask);
|
/vbox/src/VBox/Runtime/r3/ |
H A D | fileio.cpp | 70 * @param fMask Open flags to be masked out. 72 RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask) argument 78 if ((fSet | fMask) & ~RTFILE_O_WRITE_THROUGH) 84 g_fOpenReadMask = fMask; 88 g_fOpenWriteMask = fMask; 92 g_fOpenReadWriteMask = fMask;
|
/vbox/src/VBox/Devices/Graphics/testcase/ |
H A D | dump-vmwgfx.c | 95 uint32_t fMask; member in struct:FLAGDESC 292 assert(paFlagDescs[i].fMask == (UINT32_C(1) << i)); 293 if (paFlagDescs[i].fMask & fFlags)
|
/vbox/src/VBox/Runtime/common/zip/ |
H A D | tarvfs.cpp | 1169 static DECLCALLBACK(int) rtZipTarFssSym_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 1171 NOREF(pvThis); NOREF(fMode); NOREF(fMask);
|
H A D | xarvfs.cpp | 1037 static DECLCALLBACK(int) rtZipXarFssFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 1041 NOREF(fMask); 1359 static DECLCALLBACK(int) rtZipXarFssSym_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument 1361 NOREF(pvThis); NOREF(fMode); NOREF(fMask);
|
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/ |
H A D | DarwinKeyboard.cpp | 290 uint32_t fMask; member in struct:KeyboardCacheData::KeyboardCacheCookie 580 uint32_t fMask = 0; local 586 fMask = pKeyboardEntry->aCookies[i].fMask; 598 g_fHIDModifierMask |= fMask; 600 g_fHIDModifierMask &= ~fMask; 602 RTPrintf("t=%d c=%#x v=%#x cblv=%d lv=%p m=%#X\n", Event.type, Event.elementCookie, Event.value, Event.longValueSize, Event.value, fMask); RTStrmFlush(g_pStdOut); 676 uint32_t fMask; local 679 case kHIDUsage_KeyboardLeftControl : fMask = controlKey; break; 680 case kHIDUsage_KeyboardLeftShift : fMask 1694 CGEventFlags fMask = CGEventGetFlags(pEventRef); local 2094 CGEventMask fMask = CGEventMaskBit(kCGEventFlagsChanged); local [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | shellapi.h | 307 ULONG fMask; member in struct:_SHELLEXECUTEINFOA 329 ULONG fMask; member in struct:_SHELLEXECUTEINFOW
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | shellapi.h | 309 ULONG fMask; member in struct:_SHELLEXECUTEINFOA 331 ULONG fMask; member in struct:_SHELLEXECUTEINFOW
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | winuser16.h | 188 UINT16 fMask; member in struct:__anon14282
|
/vbox/src/VBox/Additions/WINNT/Mouse/NT4/ |
H A D | VBoxPS2NT.cpp | 476 UCHAR fMask = (DevType == MouDevType) ? (UCHAR)(OUTPUT_BUFFER_FULL | MOUSE_OUTPUT_BUFFER_FULL) local 479 && ((UCHAR)((byte = I8X_GET_STATUS_BYTE(pDevExt->DevRegs[i8042Cmd])) & fMask) != fMask)) 558 UCHAR fMask; local 561 fMask = (DevType == MouDevType) 566 && ((UCHAR)((byte = I8X_GET_STATUS_BYTE(pDevExt->DevRegs[i8042Cmd])) & fMask) != fMask))
|