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

/vbox/src/VBox/Devices/USB/win/
H A DUSBProxyDevice-win.cpp60 unsigned cAllocatedUrbs; member in struct:__anon15969
114 pPriv->cAllocatedUrbs = 32;
115 pPriv->paHandles = (PHANDLE)RTMemAllocZ(sizeof(pPriv->paHandles[0]) * pPriv->cAllocatedUrbs);
116 pPriv->paQueuedUrbs = (PQUEUED_URB *)RTMemAllocZ(sizeof(pPriv->paQueuedUrbs[0]) * pPriv->cAllocatedUrbs);
574 if (pPriv->cQueuedUrbs + pPriv->cPendingUrbs + 1 > pPriv->cAllocatedUrbs)
576 unsigned cNewMax = pPriv->cAllocatedUrbs + pPriv->cPendingUrbs + 1;
592 pPriv->cAllocatedUrbs = cNewMax;

Completed in 44 milliseconds