Searched defs:tokenp (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/bin/tests/
H A Dlex_test.c26 print_token(isc_token_t *tokenp, FILE *stream) { argument
27 switch (tokenp->type) {
33 (int)tokenp->value.as_region.length,
34 tokenp->value.as_region.base);
37 fprintf(stream, "NUMBER %lu", tokenp->value.as_ulong);
41 (int)tokenp->value.as_region.length,
42 tokenp->value.as_region.base);
54 fprintf(stream, "SPECIAL %c", tokenp->value.as_char);
61 tokenp->type);
/bind-9.11.3/lib/isc/
H A Dlex.c351 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) { argument
373 REQUIRE(tokenp != NULL);
377 tokenp->type = isc_tokentype_nomore;
405 tokenp->type = isc_tokentype_eof;
528 tokenp->type = isc_tokentype_eof;
535 tokenp->type = isc_tokentype_initialws;
536 tokenp->value.as_char = c;
541 tokenp->type = isc_tokentype_eol;
586 tokenp->type = isc_tokentype_special;
587 tokenp
935 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp) argument
957 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r) argument
[all...]

Completed in 11 milliseconds