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

/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);
161 if (*ppMemBuf)
163 NdisZeroMemory(*ppMemBuf, cbLength);
168 NDIS_STATUS fStatus = NdisAllocateMemoryWithTag(ppMemBuf, cbLength, VBOXNETFLT_MEM_TAG);
171 NdisZeroMemory(*ppMemBuf, cbLength);

Completed in 53 milliseconds