Lines Matching defs:count
1462 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
1467 if (count > ret)
1468 count = ret;
1469 memcpy(buf, s->s3.tmp.finish_md, count);
1474 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
1479 if (count > ret)
1480 count = ret;
1481 memcpy(buf, s->s3.tmp.peer_finish_md, count);
4378 SSL_CTX_free(ssl->ctx); /* decrement reference count */
5155 int count = scts != NULL ? sk_SCT_num(scts) : 0;
5158 for (i = 0; i < count; ++i) {