Searched refs:lexp (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dlex.h146 isc_lex_create(isc_mem_t *mctx, size_t max_token, isc_lex_t **lexp);
153 *\li '*lexp' is a valid lexer.
158 *\li On success, *lexp is attached to the newly created lexer.
166 isc_lex_destroy(isc_lex_t **lexp);
171 *\li '*lexp' is a valid lexer.
174 *\li *lexp == NULL
/bind-9.6-ESV-R11/lib/isc/
H A Dlex.c90 isc_lex_create(isc_mem_t *mctx, size_t max_token, isc_lex_t **lexp) { argument
97 REQUIRE(lexp != NULL && *lexp == NULL);
119 *lexp = lex;
125 isc_lex_destroy(isc_lex_t **lexp) { argument
132 REQUIRE(lexp != NULL);
133 lex = *lexp;
143 *lexp = NULL;

Completed in 34 milliseconds