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

/vbox/src/VBox/Runtime/r3/
H A Dpoll.cpp688 * @param cHandlesNew The new poll set size.
690 static int rtPollSetGrow(RTPOLLSETINTERNAL *pThis, uint32_t cHandlesNew) argument
692 Assert(cHandlesNew > pThis->cHandlesAllocated);
695 void *pvNew = RTMemRealloc(pThis->paHandles, cHandlesNew * sizeof(pThis->paHandles[0]));
703 pvNew = RTMemRealloc(pThis->pahNative, cHandlesNew * sizeof(pThis->pahNative[0]));
709 pvNew = RTMemRealloc(pThis->pahNative, cHandlesNew * sizeof(pThis->pahNative[0]));
714 pvNew = RTMemRealloc(pThis->pafdSelect, (cHandlesNew * 3 + 1) * sizeof(pThis->pafdSelect[0]));
722 pvNew = RTMemRealloc(pThis->paPollFds, cHandlesNew * sizeof(pThis->paPollFds[0]));
729 pThis->cHandlesAllocated = (uint16_t)cHandlesNew;

Completed in 1161 milliseconds