Searched refs:fMask (Results 26 - 50 of 54) sorted by relevance

123

/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-linux.c864 unsigned int fMask = pSession->u32MousePosChangedSeq != u32CurSeq local
868 return fMask;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dshellapi.h307 ULONG fMask; member in struct:_SHELLEXECUTEINFOA
329 ULONG fMask; member in struct:_SHELLEXECUTEINFOW
H A Dshobjidl.idl1164 DWORD fMask;
1177 DWORD fMask;
H A Dcommctrl.h1978 UINT fMask; member in struct:tagREBARINFO
1985 UINT fMask; member in struct:tagREBARBANDINFOA
2014 UINT fMask; member in struct:tagREBARBANDINFOW
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp587 static DECLCALLBACK(int) rtVfsMemFile_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask)
590 pThis->Base.ObjInfo.Attr.fMode = (pThis->Base.ObjInfo.Attr.fMode & ~fMask) | fMode;
H A Dvfsbase.cpp1874 RTDECL(int) RTVfsSymlinkSetMode(RTVFSSYMLINK hVfsSym, RTFMODE fMode, RTFMODE fMask) argument
1885 int rc = pThis->pOps->ObjSet.pfnSetMode(pThis->Base.pvThis, fMode, fMask);
/vbox/include/iprt/
H A Dvfs.h384 * @param fMask The mask indicating which bits we are changing.
387 RTDECL(int) RTVfsSymlinkSetMode(RTVFSSYMLINK hVfsSym, RTFMODE fMode, RTFMODE fMask);
H A Dfile.h246 * @param fMask Open flags to be masked out.
248 RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
H A Dvfslowlevel.h329 * @param fMask The mask indicating which bits we are
333 DECLCALLBACKMEMBER(int, pfnSetMode)(void *pvThis, RTFMODE fMode, RTFMODE fMask);
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllMap.cpp133 * 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 DPGMAll.cpp844 * 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...]
H A DCPUMAllMsrs.cpp1333 uint64_t fMask = 0; local
1338 fMask |= MSR_K6_EFER_NXE;
1340 fMask |= MSR_K6_EFER_LME;
1342 fMask |= MSR_K6_EFER_SCE;
1344 fMask |= MSR_K6_EFER_FFXSR;
1347 if (uValue & ~(fIgnoreMask | fMask))
1349 Log(("CPUM: Settings disallowed EFER bit. uValue=%#RX64 fAllowed=%#RX64 -> #GP(0)\n", uValue, fMask));
1355 if ( (uOldEfer & MSR_K6_EFER_LME) != (uValue & fMask & MSR_K6_EFER_LME)
1365 pVCpu->cpum.s.Guest.msrEFER = (uOldEfer & ~fMask) | (uValue & fMask);
[all...]
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h2922 DECLR3CALLBACKMEMBER(int, pfnR3ShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
2925 DECLRCCALLBACKMEMBER(int, pfnRCShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
2928 DECLR0CALLBACKMEMBER(int, pfnR0ShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
2937 DECLR3CALLBACKMEMBER(int, pfnR3GstModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask));
2940 DECLRCCALLBACKMEMBER(int, pfnRCGstModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask));
2943 DECLR0CALLBACKMEMBER(int, pfnR0GstModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask));
3863 DECLR3CALLBACKMEMBER(int, pfnR3ShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
3866 DECLRCCALLBACKMEMBER(int, pfnRCShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
3869 DECLR0CALLBACKMEMBER(int, pfnR0ShwModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask, uint32_t fOpFlags));
3879 DECLR3CALLBACKMEMBER(int, pfnR3GstModifyPage,(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask));
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp1037 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);
H A Dtarvfs.cpp1169 static DECLCALLBACK(int) rtZipTarFssSym_SetMode(void *pvThis, RTFMODE fMode, RTFMODE fMask) argument
1171 NOREF(pvThis); NOREF(fMode); NOREF(fMask);
/vbox/include/VBox/vmm/
H A Dpgm.h311 VMMDECL(int) PGMMapModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
334 VMMDECL(int) PGMGstModifyPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
H A Ddbgf.h1349 DECLCALLBACKMEMBER(int, pfnSet)(void *pvUser, struct DBGFREGSUBFIELD const *pSubField, RTUINT128U uValue, RTUINT128U fMask);
/vbox/src/VBox/Additions/WINNT/Mouse/NT4/
H A DVBoxPS2NT.cpp476 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))
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp1246 Info.fMask = SEE_MASK_NOCLOSEPROCESS;
1291 Info.fMask |= SEE_MASK_HMONITOR;
/vbox/include/VBox/
H A DVBoxGuestLib.h438 VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents);
/vbox/src/VBox/Devices/Network/
H A DSrvIntNetR0.cpp2759 uint32_t fMask = RT_BIT_32(u8Type);
2762 return !!(pThis->fHostGsoCapabilites & fMask);
2764 return !!(pThis->fWireGsoCapabilites & fMask);
2766 return !!(pThis->fHostGsoCapabilites & pThis->fWireGsoCapabilites & fMask);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinuser.h1597 UINT fMask; member in struct:tagMENUITEMINFOA
1612 UINT fMask; member in struct:tagMENUITEMINFOW
1642 DWORD fMask; member in struct:tagMENUINFO
1768 UINT fMask; member in struct:tagSCROLLINFO
H A Dcommctrl.h1938 UINT fMask; member in struct:tagREBARINFO
1945 UINT fMask; member in struct:tagREBARBANDINFOA
1974 UINT fMask; member in struct:tagREBARBANDINFOW
H A Dshobjidl.idl1510 DWORD fMask;
1523 DWORD fMask;
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp2355 #define PORTABLE_CLEAR_BITS_WHEN(Lvl, a_pLeafReg, FeatNm, fMask, uValue) \
2356 if ( pCpum->u8PortableCpuIdLevel >= (Lvl) && ((a_pLeafReg) & (fMask)) == (uValue) ) \
2358 LogRel(("PortableCpuId: " #a_pLeafReg "[" #FeatNm "]: %#x -> 0\n", (a_pLeafReg) & (fMask))); \
2359 (a_pLeafReg) &= ~(uint32_t)(fMask); \

Completed in 245 milliseconds

123