Lines Matching defs:tokenp
342 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
364 REQUIRE(tokenp != NULL);
368 tokenp->type = isc_tokentype_nomore;
395 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;
590 tokenp->type = isc_tokentype_special;
591 tokenp->value.as_char = c;
615 tokenp->type = isc_tokentype_eol;
639 tokenp->type =
641 tokenp->value.as_ulong =
646 tokenp->type =
648 v = &(tokenp->value);
734 tokenp->type = (state == lexstate_string)
737 tokenp->value.as_textregion.base = lex->data;
738 tokenp->value.as_textregion.length =
827 tokenp->type =
831 tokenp->value.as_textregion.base =
833 tokenp->value.as_textregion.length =
887 tokenp->type = isc_tokentype_btext;
888 tokenp->value.as_textregion.base =
890 tokenp->value.as_textregion.length =
1021 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp) {
1030 REQUIRE(tokenp != NULL);
1032 tokenp->type == isc_tokentype_eof);
1034 UNUSED(tokenp);
1043 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r) {
1049 REQUIRE(tokenp != NULL);
1051 tokenp->type == isc_tokentype_eof);
1053 UNUSED(tokenp);