Lines Matching refs:papCerts
84 /** The max number of certificates papCerts can store before growing it. */
87 PRTCRSTOREINMEMCERT *papCerts;
190 void *pv = RTMemRealloc(pThis->papCerts, cMin * sizeof(pThis->papCerts[0]));
193 pThis->papCerts = (PRTCRSTOREINMEMCERT *)pv;
195 pThis->papCerts[i] = NULL;
212 PRTCRSTOREINMEMCERT pEntry = pThis->papCerts[i];
213 pThis->papCerts[i] = NULL;
220 RTMemFree(pThis->papCerts);
221 pThis->papCerts = NULL;
257 PRTCRCERTCTXINT pCertCtx = &pThis->papCerts[i]->Core;
295 rc = rtCrStoreInMemCreateCertEntry(pThis, fFlags, pbEncoded, cbEncoded, pErrInfo, &pThis->papCerts[pThis->cCerts]);
335 pStore->papCerts = NULL;