Lines Matching full:len
109 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
111 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
114 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
116 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
123 long len;
142 j=ASN1_get_object(&p,&len,&tag,&xclass,length);
162 depth,(long)hl,len) <= 0)
175 ep=p+len;
177 if (len > length)
184 if ((j == 0x21) && (len == 0))
198 r=asn1_parse2(bp,&p,(long)len,
206 p+=len;
222 if ((len > 0) &&
223 BIO_write(bp,(const char *)p,(int)len)
224 != (int)len)
230 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL)
246 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl);
263 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl);
332 bs=d2i_ASN1_INTEGER(NULL,&opp,len+hl);
364 bs=d2i_ASN1_ENUMERATED(NULL,&opp,len+hl);
390 else if (len > 0 && dump)
398 ((dump == -1 || dump > len)?len:dump),
408 p+=len;
415 length-=len;