HomeSort by relevance Sort by last modified time
    Searched defs:objlen (Results 1 - 2 of 2) sorted by null

  /external/openssl/crypto/x509v3/
v3_alt.c 569 int objlen; local
580 objlen = p - value;
581 objtmp = OPENSSL_malloc(objlen + 1);
582 strncpy(objtmp, value, objlen);
583 objtmp[objlen] = 0;
  /external/openssl/crypto/asn1/
a_strex.c 469 int objlen, fld_len; local
486 objlen = strlen(objbuf);
487 if(!io_ch(arg, objbuf, objlen)) return -1;
488 if ((objlen < fld_len) && (flags & XN_FLAG_FN_ALIGN)) {
489 if (!do_indent(io_ch, arg, fld_len - objlen)) return -1;
490 outlen += fld_len - objlen;
493 outlen += objlen + sep_eq_len;

Completed in 152 milliseconds