Searched refs:updateLen (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/security_ocspd-55124/server/
H A DocspdServer.cpp446 unsigned int updateLen = 0; local
448 if((err=readFile(updateFileName, &updateBytes, &updateLen) != 0)) {
454 if(updateLen >= 4 && !memcmp(updateBytes, "NONE", 4)) {
469 char buf[updateLen+1];
470 strncpy(buf, (char *)updateBytes, updateLen);
471 buf[updateLen-1]='\0'; /* deliberately cutting off final LF byte */
/macosx-10.10/CommonCrypto-60061/lib/
H A DCommonCryptor.c819 size_t updateLen, finalLen; local
829 if(kCCSuccess != (retval = CCCryptorUpdate(cryptor, dataIn, dataInLength, dataOut, dataOutAvailable, &updateLen))) {
832 dataOut += updateLen; dataOutAvailable -= updateLen;
834 if(dataOutMoved != NULL) *dataOutMoved = updateLen + finalLen;

Completed in 188 milliseconds