Lines Matching defs:len
1322 int len, unsigned char *buffer)
1324 BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
1342 void print_array(BIO *out, const char* title, int len, const unsigned char* d)
1346 BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1347 for (i = 0; i < len; i++) {
1350 if (i < len - 1)
1989 int len, ret;
1997 len = maxlen;
1999 len = 1024;
2000 len = BIO_read(in, tbuf, len);
2001 if (len < 0) {
2005 if (len == 0)
2007 if (BIO_write(mem, tbuf, len) != len) {
2011 maxlen -= len;
2085 size_t len;
2090 len = strlen(in);
2091 if (len == 0 || len >= 65535)
2094 out = app_malloc(len + 1, "NPN buffer");
2095 for (i = 0; i <= len; ++i) {
2096 if (i == len || in[i] == ',') {
2122 if (len <= skipped) {
2127 *outlen = len + 1 - skipped;