Searched refs:cbLength (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/common/
H A DVBoxMPCommon.h54 inline bool VBoxMPCmnUpdatePointerShape(PVBOXMP_COMMON pCommon, PVIDEO_POINTER_ATTRIBUTES pAttrs, uint32_t cbLength) argument
62 cbLength - sizeof(VIDEO_POINTER_ATTRIBUTES));
/vbox/src/VBox/HostDrivers/VBoxUSB/win/cmn/
H A DVBoxDrvTool.cpp210 USHORT cbLength = pSrc->Length + sizeof (pDst->Buffer[0]);
211 pDst->Buffer = (PWCHAR)vboxDrvToolMemAlloc(cbLength);
218 pDst->MaximumLength = cbLength;
/vbox/src/VBox/Runtime/r3/
H A Disofs.cpp559 size_t cbLength; local
560 int rc = RTIsoFsGetFileInfo(pFile, pszSource, &cbOffset, &cbLength);
572 while ( cbLength > 0
575 cbToRead = RT_MIN(cbLength, _64K);
582 cbLength -= cbRead;
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dpointer.c72 uint32_t cbLength; member in struct:vboxCursorImage
161 pImage->pPixels, pImage->cbLength);
331 pImage->cbLength = sizeRequest - sizeof(*pImage);
/vbox/src/VBox/Additions/common/VBoxVideo/
H A DHGSMIBase.cpp541 * @param cbLength size in bytes of the pixel data
550 uint32_t cbLength)
567 if (cbData > cbLength)
570 cbData, cbLength));
543 VBoxHGSMIUpdatePointerShape(PHGSMIGUESTCOMMANDCONTEXT pCtx, uint32_t fFlags, uint32_t cHotX, uint32_t cHotY, uint32_t cWidth, uint32_t cHeight, uint8_t *pPixels, uint32_t cbLength) argument
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwmsdkidl.idl315 [in, size_is(cbLength)] const BYTE *pValue,
316 [in] WORD cbLength);
/vbox/src/VBox/HostDrivers/VBoxUSB/win/mon/
H A DVBoxUsbMon.cpp261 ULONG cbLength = 0; local
264 NTSTATUS Status = ObQueryNameString(pDo, &buf.Info, sizeof (buf), &cbLength);
273 LOG(("ObQueryNameString returned STATUS_INFO_LENGTH_MISMATCH, required size %d", cbLength));
275 pInfo = (POBJECT_NAME_INFORMATION)VBoxUsbMonMemAlloc(cbLength);
281 Status = ObQueryNameString(pDo, pInfo, cbLength, &cbLength);
327 ULONG cbLength = 0; local
329 NTSTATUS tmpStatus = ObQueryNameString(pCurDo, &buf.Info, sizeof (buf), &cbLength);
343 WARN(("ObQueryNameString STATUS_INFO_LENGTH_MISMATCH, required %d", cbLength));
/vbox/include/VBox/
H A DVBoxVideoGuest.h258 uint32_t cbLength);
/vbox/src/VBox/Devices/USB/
H A DVUSBUrb.cpp257 const unsigned cbLength = *pb; local
258 unsigned cb = cbLength;
262 if (cbLength > cbLeft)
265 if (cbLength != 0xff) /* ignore this */
266 Log(("URB: %*s: DESC: warning descriptor length goes beyond the end of the URB! cbLength=%d cbLeft=%d\n",
267 s_cchMaxMsg, pszMsg, cbLength, cbLeft));
274 s_cchMaxMsg, pszMsg, pb - pbData, "bLength", cbLength, cbLength,
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/drv/
H A DVBoxNetFltRt-win.cpp157 DECLHIDDEN(NDIS_STATUS) vboxNetFltWinMemAlloc(PVOID* ppMemBuf, UINT cbLength) argument
160 *ppMemBuf = ExAllocatePoolWithTag(NonPagedPool, cbLength, VBOXNETFLT_MEM_TAG);
163 NdisZeroMemory(*ppMemBuf, cbLength);
168 NDIS_STATUS fStatus = NdisAllocateMemoryWithTag(ppMemBuf, cbLength, VBOXNETFLT_MEM_TAG);
171 NdisZeroMemory(*ppMemBuf, cbLength);
1629 UINT cbLength; local
1631 NdisQueryBufferSafe(pBuffer, &pvMemBuf, &cbLength, NormalPagePriority);
H A DVBoxNetFltRt-win.h755 DECLHIDDEN(NDIS_STATUS) vboxNetFltWinMemAlloc(PVOID* ppMemBuf, UINT cbLength);
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A Dinfo.c25 ULONG cbLength = (str).u16Length; \
26 (obj)->FileNameLength = cbLength; \
27 RtlCopyMemory((obj)->FileName, &(str).String.ucs2[0], cbLength + 2); \
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPMisc.cpp1182 SIZE_T cbLength = pAlloc->cbData;
1184 PVBOXVIDEOCM_ALLOC_REF pAllocRef = (PVBOXVIDEOCM_ALLOC_REF)vboxWddmMemAllocZero(sizeof (*pAllocRef) + sizeof (PFN_NUMBER) * ADDRESS_AND_SIZE_TO_SPAN_PAGES(BaseVa, cbLength));
1188 MmInitializeMdl(&pAllocRef->Mdl, BaseVa, cbLength);

Completed in 92 milliseconds