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

/vbox/src/VBox/Runtime/common/crypto/
H A Ddigest-core.cpp115 RTDECL(int) RTCrDigestClone(PRTCRDIGEST phDigest, RTCRDIGEST hSrc) argument
118 AssertPtrReturn(hSrc, VERR_INVALID_HANDLE);
119 AssertReturn(hSrc->u32Magic == RTCRDIGESTINT_MAGIC, VERR_INVALID_HANDLE);
122 uint32_t const offHash = hSrc->offHash;
123 PRTCRDIGESTINT pThis = (PRTCRDIGESTINT)RTMemAllocZ(RT_OFFSETOF(RTCRDIGESTINT, abState[offHash + hSrc->pDesc->cbHash]));
129 pThis->pDesc = hSrc->pDesc;
130 if (hSrc->pDesc->pfnClone)
131 rc = hSrc->pDesc->pfnClone(pThis->abState, hSrc->abState);
133 memcpy(pThis->abState, hSrc
[all...]
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp1184 * @param hSrc The source file.
1190 static void CopyFileToStdXxx(RTFILE hSrc, PRTSTREAM pDst, bool fComplain) argument
1197 rc = RTFileRead(hSrc, abBuf, sizeof(abBuf), &cbRead);

Completed in 45 milliseconds