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

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-default-allocator.cpp82 void *pvOld, void **ppvNew, size_t cbNew)
90 *ppvNew = pv;
81 rtAsn1DefaultAllocator_Realloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation, void *pvOld, void **ppvNew, size_t cbNew) argument
H A Dasn1-efence-allocator.cpp63 void *pvOld, void **ppvNew, size_t cbNew)
70 *ppvNew = pv;
62 rtAsn1EFenceAllocator_Realloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation, void *pvOld, void **ppvNew, size_t cbNew) argument
/vbox/src/VBox/Runtime/r3/
H A Dmemsafer-r3.cpp362 RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW
367 AssertPtrReturn(ppvNew, VERR_INVALID_PARAMETER);
368 *ppvNew = NULL;
414 *ppvNew = pThis->Core.Key;
484 static int rtMemSaferReallocSimpler(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) argument
492 *ppvNew = pvNew;
498 RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW
527 *ppvNew = pvOld;
554 *ppvNew = pbNew;
558 Assert(((uintptr_t)*ppvNew
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDrvBlock.cpp332 static DECLCALLBACK(int) drvblockIoBufAlloc(PPDMIBLOCK pInterface, size_t cb, void **ppvNew) argument
336 return pThis->pDrvMedia->pfnIoBufAlloc(pThis->pDrvMedia, cb, ppvNew);
H A DDrvHostBase.cpp329 static DECLCALLBACK(int) drvHostBaseIoBufAlloc(PPDMIBLOCK pInterface, size_t cb, void **ppvNew) argument
338 *ppvNew = pvNew;
H A DDrvVD.cpp1964 static DECLCALLBACK(int) drvvdIoBufAlloc(PPDMIMEDIA pInterface, size_t cb, void **ppvNew) argument
1972 rc = RTMemSaferAllocZEx(ppvNew, cb, RTMEMSAFER_F_REQUIRE_NOT_PAGABLE);
1979 *ppvNew = pvNew;

Completed in 60 milliseconds