Lines Matching defs:len
429 long bio_dump_callback(BIO *bio, int cmd, const char *argp, size_t len,
441 (void *)bio, (void *)argp, len, *processed, *processed);
445 (void *)bio, (void *)argp, len, ret);
450 (void *)bio, (void *)argp, len, *processed, *processed);
454 (void *)bio, (void *)argp, len, ret);
567 size_t len, SSL *ssl, void *arg)
591 if (len == 2) {
607 if (len > 0)
632 str_content_type, (unsigned long)len, str_details1,
635 if (len > 0) {
639 num = len;
645 if (i < len)
742 const unsigned char *data, int len, void *arg)
747 BIO_printf(bio, "TLS %s extension \"%s\" (id=%d), len=%d\n",
748 client_server ? "server" : "client", extname, type, len);
749 BIO_dump(bio, (const char *)data, len);
1142 static char *hexencode(const unsigned char *data, size_t len)
1147 size_t outlen = 2 * len + 1;
1150 if (outlen < len || ilen < 0 || outlen != (size_t)ilen) {
1152 opt_getprog(), len);
1157 while (len-- > 0) {