Home | History | Annotate | Download | only in x509

Lines Matching refs:elem

127 static int bitstr_cb(const char *elem, int len, void *bitstr);
128 static int asn1_cb(const char *elem, int len, void *bitstr);
302 static int asn1_cb(const char *elem, int len, void *bitstr)
312 if (elem == NULL)
315 for (i = 0, p = elem; i < len; p++, i++) {
319 vlen = len - (vstart - elem);
320 len = p - elem;
325 utype = asn1_str2tag(elem, len);
329 ERR_add_error_data(2, "tag=", elem);
338 if (!vstart && elem[len]) {
823 static int bitstr_cb(const char *elem, int len, void *bitstr)
827 if (!elem)
829 bitnum = strtoul(elem, &eptr, 10);
830 if (eptr && *eptr && (eptr != elem + len))