Searched refs:objlen (Results 1 - 3 of 3) sorted by relevance

/external/openssl/crypto/x509v3/
H A Dv3_info.c141 int i, objlen;
159 objlen = ptmp - cnf->name;
164 if(!(objtmp = OPENSSL_malloc(objlen + 1))) {
168 strncpy(objtmp, cnf->name, objlen);
169 objtmp[objlen] = 0;
H A Dv3_alt.c569 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/
H A Da_strex.c476 int objlen, fld_len; local
493 objlen = strlen(objbuf);
494 if(!io_ch(arg, objbuf, objlen)) return -1;
495 if ((objlen < fld_len) && (flags & XN_FLAG_FN_ALIGN)) {
496 if (!do_indent(io_ch, arg, fld_len - objlen)) return -1;
497 outlen += fld_len - objlen;
500 outlen += objlen + sep_eq_len;

Completed in 60 milliseconds