Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/lib/hx509/
H A Dsel.c210 _hx509_expr_input.buf = buf; in _hx509_expr_parse()
211 _hx509_expr_input.length = strlen(buf); in _hx509_expr_parse()
212 _hx509_expr_input.offset = 0; in _hx509_expr_parse()
213 _hx509_expr_input.expr = NULL; in _hx509_expr_parse()
215 if (_hx509_expr_input.error) { in _hx509_expr_parse()
216 free(_hx509_expr_input.error); in _hx509_expr_parse()
217 _hx509_expr_input.error = NULL; in _hx509_expr_parse()
222 return _hx509_expr_input.expr; in _hx509_expr_parse()
228 if (_hx509_expr_input.error) in _hx509_sel_yyerror()
229 free(_hx509_expr_input.error); in _hx509_sel_yyerror()
[all …]
H A Dsel-lex.l55 struct hx_expr_input _hx509_expr_input; variable
130 n = _hx509_expr_input.length - _hx509_expr_input.offset; in lex_input()
136 memcpy(buf, _hx509_expr_input.buf + _hx509_expr_input.offset, n); in lex_input()
137 _hx509_expr_input.offset += n; in lex_input()
H A Dsel.h68 extern struct hx_expr_input _hx509_expr_input;
H A Dsel-gram.y73 start: expr { _hx509_expr_input.expr = $1; }