Searched refs:fFlag (Results 1 - 21 of 21) sorted by relevance

/vbox/include/VBox/vmm/
H A Dvm.h514 * @param fFlag The flag to set.
517 # define VM_FF_SET(pVM, fFlag) ASMAtomicOrU32(&(pVM)->fGlobalForcedActions, (fFlag))
519 # define VM_FF_SET(pVM, fFlag) \
520 do { ASMAtomicOrU32(&(pVM)->fGlobalForcedActions, (fFlag)); \
521 RTLogPrintf("VM_FF_SET : %08x %s - %s(%d) %s\n", (pVM)->fGlobalForcedActions, #fFlag, __FILE__, __LINE__, __FUNCTION__); \
529 * @param fFlag The flag to set.
531 #define VMCPU_FF_SET(pVCpu, fFlag) ASMAtomicOrU32(&(pVCpu)->fLocalForcedActions, (fFlag))
537 * @param fFlag Th
[all...]
H A Dhm_vmx.h60 * @param fFlag The flag to set.
62 #define HMVMXCPU_GST_SET_UPDATED(pVCpu, fFlag) (ASMAtomicUoOrU32(&(pVCpu)->hm.s.vmx.fUpdatedGuestState, (fFlag)))
68 * @param fFlag The flag to check.
70 #define HMVMXCPU_GST_IS_SET(pVCpu, fFlag) ((ASMAtomicUoReadU32(&(pVCpu)->hm.s.vmx.fUpdatedGuestState) & (fFlag)) == (fFlag))
/vbox/include/VBox/HostServices/
H A DGuestPropertySvc.h75 * @returns the name, or NULL if fFlag is invalid.
76 * @param fFlag the flag. Must be a value from the ePropFlags enumeration
79 DECLINLINE(const char *) flagName(uint32_t fFlag) argument
81 switch (fFlag)
101 * @returns the length, or 0 if fFlag is invalid.
102 * @param fFlag the flag. Must be a value from the ePropFlags enumeration
105 DECLINLINE(size_t) flagNameLen(uint32_t fFlag) argument
107 const char *pcszName = flagName(fFlag);
/vbox/src/VBox/Runtime/r3/
H A Dtcp.cpp332 int fFlag = 1; local
333 if (!rtSocketSetOpt(WaitSock, SOL_SOCKET, SO_REUSEADDR, &fFlag, sizeof(fFlag)))
1037 int fFlag = 1; local
1038 int rc = rtSocketSetOpt(Sock, IPPROTO_TCP, TCP_NODELAY, &fFlag, sizeof(fFlag));
1041 fFlag = 0;
1042 rc = rtSocketSetOpt(Sock, IPPROTO_TCP, TCP_NODELAY, &fFlag, sizeof(fFlag));
1050 int fFlag local
[all...]
H A Dudp.cpp303 int fFlag = 1; local
304 if (!rtSocketSetOpt(Sock, SOL_SOCKET, SO_REUSEADDR, &fFlag, sizeof(fFlag)))
/vbox/src/VBox/VMM/include/
H A DHMInternal.h64 * @param fFlag The flag to clear.
66 #define HMCPU_CF_CLEAR(pVCpu, fFlag) (ASMAtomicUoAndU32(&(pVCpu)->hm.s.fContextUseFlags, ~(fFlag)))
72 * @param fFlag The flag to set.
74 #define HMCPU_CF_SET(pVCpu, fFlag) (ASMAtomicUoOrU32(&(pVCpu)->hm.s.fContextUseFlags, (fFlag)))
80 * @param fFlag The flag to check.
82 #define HMCPU_CF_IS_SET(pVCpu, fFlag) ((ASMAtomicUoReadU32(&(pVCpu)->hm.s.fContextUseFlags) & (fFlag)) == (fFlag))
[all...]
H A DMMInternal.h437 #define MMHYPERCHUNK_FLAGS_OP_ISSET(pChunk, fFlag) (!!(((pChunk)->offPrev) & ((fFlag) & MMHYPERCHUNK_FLAGS_MASK)))
/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/
H A DVBoxUSBMon-solaris.c75 static int VBoxUSBMonSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred);
76 static int VBoxUSBMonSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred);
412 static int VBoxUSBMonSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred) argument
471 NOREF(fFlag);
478 static int VBoxUSBMonSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred) argument
518 NOREF(fFlag);
H A DVBoxUSB-solaris.c121 int VBoxUSBSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred);
122 int VBoxUSBSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred);
892 int VBoxUSBSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred) argument
894 LogFunc((DEVICE_NAME ":VBoxUSBSolarisOpen pDev=%p fFlag=%d fType=%d pCred=%p\n", pDev, fFlag, fType, pCred));
933 NOREF(fFlag);
940 int VBoxUSBSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred) argument
942 LogFunc((DEVICE_NAME ":VBoxUSBSolarisClose Dev=%d fFlag=%d fType=%d pCred=%p\n", Dev, fFlag, fType, pCred));
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-solaris.c67 static int VBoxGuestSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred);
68 static int VBoxGuestSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred);
484 static int VBoxGuestSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred) argument
/vbox/src/VBox/Additions/solaris/Mouse/
H A Dvboxms.c79 static int vbmsSolOpen(queue_t *pReadQueue, dev_t *pDev, int fFlag,
81 static int vbmsSolClose(queue_t *pReadQueue, int fFlag, cred_t *pCred);
433 int vbmsSolOpen(queue_t *pReadQueue, dev_t *pDev, int fFlag, int fMode, argument
439 NOREF(fFlag);
574 int vbmsSolClose(queue_t *pReadQueue, int fFlag, cred_t *pCred) argument
579 NOREF(fFlag);
/vbox/src/VBox/Runtime/common/log/
H A Dlog.cpp301 uint32_t fFlag; /**< The flag value. */ member in struct:__anon16567
345 uint32_t fFlag; /**< The corresponding destination flag. */ member in struct:__anon16568
1785 unsigned fFlag;
1843 fFlags |= aFlags[i].fFlag;
2056 pLogger->fFlags |= s_aLogFlags[i].fFlag;
2058 pLogger->fFlags &= ~s_aLogFlags[i].fFlag;
2179 ? (s_aLogFlags[i].fFlag & fFlags)
2180 : !(s_aLogFlags[i].fFlag & fFlags))
2252 pLogger->fDestFlags |= s_aLogDst[i].fFlag;
2254 pLogger->fDestFlags &= ~s_aLogDst[i].fFlag;
[all...]
/vbox/src/VBox/Additions/solaris/DRM/
H A Dvboxvideo_drm.c349 static int vboxVideoSolarisLoad(drm_device_t *pDevice, unsigned long fFlag) argument
/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp969 int fFlag = 1; local
971 (const char *)&fFlag, sizeof(fFlag));
972 fFlag = 0;
974 (const char *)&fFlag, sizeof(fFlag));
983 int fFlag = fEnable ? 0 : 1; local
985 (const char *)&fFlag, sizeof(fFlag));
/vbox/src/VBox/HostDrivers/Support/solaris/
H A DSUPDrv-solaris.c87 static int VBoxDrvSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred);
88 static int VBoxDrvSolarisClose(dev_t Dev, int fFlag, int fType, cred_t *pCred);
467 static int VBoxDrvSolarisOpen(dev_t *pDev, int fFlag, int fType, cred_t *pCred) argument
/vbox/src/VBox/Devices/Network/
H A DDrvIntNet.cpp196 uint32_t fFlag; member in struct:DRVINTNETFLAG
1318 *pfFlags |= paFlags[i].fFlag;
/vbox/src/VBox/VMM/VMMR0/
H A DHMR0.cpp1869 const char *pszSet; const char *pszClear; uint32_t fFlag;
1893 const char *pszAdd = s_aFlags[i].fFlag & uEFlags ? s_aFlags[i].pszSet : s_aFlags[i].pszClear;
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFReg.cpp2296 uint32_t fFlag;
2317 const char *pszAdd = aFlags[i].fFlag & efl ? aFlags[i].pszSet : aFlags[i].pszClear;
H A DHM.cpp1417 static const struct { uint32_t fFlag; const char *pszName; } s_aSvmFeatures[] = member in struct:__anon16850
1436 if (fSvmFeatures & s_aSvmFeatures[i].fFlag)
1439 fSvmFeatures &= ~s_aSvmFeatures[i].fFlag;
H A DCPUM.cpp1424 const char *pszSet; const char *pszClear; uint32_t fFlag; member in struct:__anon16839
1446 const char *pszAdd = s_aFlags[i].fFlag & efl ? s_aFlags[i].pszSet : s_aFlags[i].pszClear;
/vbox/src/VBox/Additions/os2/VBoxSF/
H A DVBoxSFA.asm398 movzx ecx, word [ebp + 1ch] ; fFlag

Completed in 2819 milliseconds