Searched refs:ppvNew (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
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
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
/vbox/src/VBox/Runtime/generic/
H A Dmemsafer-generic.cpp105 RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW
107 AssertPtrReturn(ppvNew, VERR_INVALID_PARAMETER);
108 *ppvNew = NULL;
131 *ppvNew = pvUser;
162 RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW
186 *ppvNew = pvNew;
193 rc = RTMemSaferAllocZExTag(ppvNew, cbNew, fFlags, pszTag);
/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/include/iprt/
H A Dmemsafer.h104 * @param ppvNew Where to return the pointer to the memory.
110 RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW;
164 * @param ppvNew Where to return the pointer to the new memory.
170 RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW;
H A Dasn1.h95 * @param ppvNew Where to store the pointer on success. Shall not be
102 void *pvOld, void **ppvNew, size_t cbNew);
/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 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;
H A DDrvHostBase.cpp329 static DECLCALLBACK(int) drvHostBaseIoBufAlloc(PPDMIBLOCK pInterface, size_t cb, void **ppvNew) argument
338 *ppvNew = pvNew;
/vbox/include/VBox/vmm/
H A Dpdmifs.h1241 * @param ppvNew Where to store the pointer to the buffer on success.
1243 DECLR3CALLBACKMEMBER(int, pfnIoBufAlloc, (PPDMIBLOCK pInterface, size_t cb, void **ppvNew));
1683 * @param ppvNew Where to store the pointer to the buffer on success.
1685 DECLR3CALLBACKMEMBER(int, pfnIoBufAlloc, (PPDMIMEDIA pInterface, size_t cb, void **ppvNew));

Completed in 376 milliseconds