Searched defs:u32Size (Results 1 - 9 of 9) sorted by relevance

/vbox/include/VBox/GuestHost/
H A Dclipboard-helper.h104 uint32_t u32Size; member in struct:BMFILEHEADER
120 uint32_t u32Size; member in struct:BMINFOHEADER
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DSysHlp.cpp49 * @param u32Size The size of the range.
53 int vbglLockLinear (void **ppvCtx, void *pv, uint32_t u32Size, bool fWriteAccess, uint32_t fFlags) argument
62 if (u32Size == 0)
76 PMDL pMdl = IoAllocateMdl (pv, u32Size, FALSE, FALSE, NULL);
81 AssertMsgFailed(("IoAllocateMdl %p %x failed!!\n", pv, u32Size));
99 AssertMsgFailed(("MmProbeAndLockPages %p %x failed!!\n", pv, u32Size));
113 rc = RTR0MemObjLockUser(&MemObj, (RTR3PTR)pv, u32Size, fAccess, NIL_RTR0PROCESS);
115 rc = RTR0MemObjLockKernel(&MemObj, pv, u32Size, fAccess);
126 void vbglUnlockLinear (void *pvCtx, void *pv, uint32_t u32Size) argument
146 NOREF(u32Size);
[all...]
/vbox/src/VBox/HostServices/GuestProperties/testcase/
H A DtstGuestPropSvc.cpp770 uint32_t u32Size; local
773 || RT_FAILURE(g_AsyncNotification.aParms[3].getUInt32(&u32Size))
774 || u32Size != g_aGetNotifications[0].cbBuffer
775 || memcmp(g_AsyncNotification.abBuffer, g_aGetNotifications[0].pchBuffer, u32Size) != 0
/vbox/src/VBox/Devices/Parallel/
H A DDrvHostParallel.cpp332 uint32_t u32Size; local
359 u32Size = 0;
360 cmRet = CM_Get_Res_Des_Data_Size((PULONG)(&u32Size), nextLogConf, 0L);
368 pBuf = (uint8_t *)RTMemAlloc(u32Size + 1);
371 LogFlowFunc(("Failed to get Buf %d\n", u32Size));
375 cmRet = CM_Get_Res_Des_Data(nextLogConf, pBuf, u32Size, 0L);
/vbox/src/VBox/Devices/VMMDev/
H A DVMMDevHGCM.cpp257 uint32_t u32Size,
267 u32Size += GCPtr & PAGE_OFFSET_MASK;
269 uint32_t cPages = (u32Size + PAGE_SIZE - 1) / PAGE_SIZE;
271 Log(("vmmdevHGCMSaveLinPtr: parm %d: %RGv %d = %d pages\n", iParm, GCPtr, u32Size, cPages));
312 uint32_t u32Size,
320 AssertLogRelReturn(u32Size > 0 && iParm == (uint32_t)pLinPtr->iParm, VERR_INVALID_PARAMETER);
325 Log(("vmmdevHGCMWriteLinPtr: parm %d: size %d, cPages = %d\n", iParm, u32Size, pLinPtr->cPages));
340 if (cbWrite >= u32Size)
342 rc = PDMDevHlpPhysWrite(pDevIns, GCPhysDst, pu8Src, u32Size);
346 u32Size
254 vmmdevHGCMSaveLinPtr(PPDMDEVINS pDevIns, uint32_t iParm, RTGCPTR GCPtr, uint32_t u32Size, uint32_t iLinPtr, VBOXHGCMLINPTR *paLinPtrs, RTGCPHYS **ppPages) argument
309 vmmdevHGCMWriteLinPtr(PPDMDEVINS pDevIns, uint32_t iParm, void *pvHost, uint32_t u32Size, uint32_t iLinPtr, VBOXHGCMLINPTR *paLinPtrs) argument
[all...]
/vbox/src/VBox/Devices/Bus/
H A DDevPCI.cpp1054 uint32_t u32Size; local
1061 u32Size = pci_config_readl(pGlobals, uBus, uDevFn, u32Address);
1064 u32Size &= ~(0x01);
1066 u32Size &= ~(0x0f);
1072 if (((u8RessourceType & 0x01) == 1) && (u32Size & UINT32_C(0xffff0000)) == 0)
1073 u32Size = (~(u32Size | UINT32_C(0xffff0000))) + 1;
1075 u32Size = (~u32Size) + 1;
1077 Log(("%s: Size of region %u for device %d on bus %d is %u\n", __FUNCTION__, i, uDevFn, uBus, u32Size));
[all...]
/vbox/include/VBox/
H A Dshflsvc.h191 DECLINLINE(PSHFLSTRING) ShflStringInitBuffer(void *pvBuffer, uint32_t u32Size) argument
200 if (u32Size >= u32HeaderSize && u32Size - u32HeaderSize <= 0xFFFF)
203 pString->u16Size = u32Size - u32HeaderSize;
H A DVMMDev.h2169 uint32_t u32Size; member in struct:VMMDevMemory
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp512 static LONG GetNextUsedPort(LONG aPortUsed[30], LONG lBaseVal, uint32_t u32Size) argument
515 for (size_t j = 0; j < u32Size; ++j)

Completed in 76 milliseconds