Searched defs:tokenp (Results 1 - 2 of 2) sorted by relevance
/bind-9.6-ESV-R11/bin/tests/ |
H A D | lex_test.c | 34 print_token(isc_token_t *tokenp, FILE *stream) { argument 35 switch (tokenp->type) { 41 (int)tokenp->value.as_region.length, 42 tokenp->value.as_region.base); 45 fprintf(stream, "NUMBER %lu", tokenp->value.as_ulong); 49 (int)tokenp->value.as_region.length, 50 tokenp->value.as_region.base); 62 fprintf(stream, "SPECIAL %c", tokenp->value.as_char); 69 tokenp->type);
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | lex.c | 353 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) { argument 375 REQUIRE(tokenp != NULL); 379 tokenp->type = isc_tokentype_nomore; 400 tokenp->type = isc_tokentype_eof; 517 tokenp->type = isc_tokentype_eof; 524 tokenp->type = isc_tokentype_initialws; 525 tokenp->value.as_char = c; 530 tokenp->type = isc_tokentype_eol; 562 tokenp->type = isc_tokentype_special; 563 tokenp 859 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp) argument 881 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r) argument [all...] |
Completed in 11 milliseconds