Home
last modified time | relevance | path

Searched refs:constraint_spec (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dsymbol.h124 struct constraint_spec;
133 struct constraint_spec *constraint;
139 struct constraint_spec { struct
H A Dasn1parse.y54 static struct constraint_spec *new_constraint_spec(enum ctype);
86 struct constraint_spec *constraint_spec; member
230 %type <constraint_spec> Constraint
231 %type <constraint_spec> ConstraintSpec
232 %type <constraint_spec> GeneralConstraint
233 %type <constraint_spec> ContentsConstraint
234 %type <constraint_spec> UserDefinedConstraint
1021 static struct constraint_spec *
1024 struct constraint_spec *c = ecalloc(1, sizeof(*c)); in new_constraint_spec()
H A Dasn1parse.c87 static struct constraint_spec *new_constraint_spec(enum ctype);
350 struct constraint_spec *constraint_spec; member
2103 (yyval.constraint_spec) = (yyvsp[-1].constraint_spec); in yyparse()
2111 (yyval.constraint_spec) = new_constraint_spec(CT_CONTENTS); in yyparse()
2112 (yyval.constraint_spec)->u.content.type = (yyvsp[0].type); in yyparse()
2113 (yyval.constraint_spec)->u.content.encoding = NULL; in yyparse()
2123 (yyval.constraint_spec) = new_constraint_spec(CT_CONTENTS); in yyparse()
2124 (yyval.constraint_spec)->u.content.type = NULL; in yyparse()
2125 (yyval.constraint_spec)->u.content.encoding = (yyvsp[0].value); in yyparse()
2135 (yyval.constraint_spec) = new_constraint_spec(CT_CONTENTS); in yyparse()
[all …]
H A Dasn1parse.h259 struct constraint_spec *constraint_spec; member