Lines Matching defs:elem
67 static int bitstr_cb(const char *elem, int len, void *bitstr);
68 static int asn1_cb(const char *elem, int len, void *bitstr);
240 static int asn1_cb(const char *elem, int len, void *bitstr)
250 if (elem == NULL)
253 for (i = 0, p = elem; i < len; p++, i++) {
257 vlen = len - (vstart - elem);
258 len = p - elem;
263 utype = asn1_str2tag(elem, len);
266 ERR_raise_data(ERR_LIB_ASN1, ASN1_R_UNKNOWN_TAG, "tag=%s", elem);
275 if (!vstart && elem[len]) {
742 static int bitstr_cb(const char *elem, int len, void *bitstr)
746 if (!elem)
748 bitnum = strtoul(elem, &eptr, 10);
749 if (eptr && *eptr && (eptr != elem + len))
762 static int mask_cb(const char *elem, int len, void *arg)
766 if (elem == NULL)
768 if ((len == 3) && (strncmp(elem, "DIR", 3) == 0)) {
772 tag = asn1_str2tag(elem, len);