Lines Matching defs:tokenp
353 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
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->value.as_char = c;
583 tokenp->type = isc_tokentype_eol;
605 tokenp->type =
607 tokenp->value.as_ulong =
612 tokenp->type =
614 v = &(tokenp->value);
659 tokenp->type = isc_tokentype_string;
660 tokenp->value.as_textregion.base = lex->data;
661 tokenp->value.as_textregion.length =
743 tokenp->type = isc_tokentype_qstring;
744 tokenp->value.as_textregion.base =
746 tokenp->value.as_textregion.length =
859 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp) {
868 REQUIRE(tokenp != NULL);
870 tokenp->type == isc_tokentype_eof);
872 UNUSED(tokenp);
881 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r)
888 REQUIRE(tokenp != NULL);
890 tokenp->type == isc_tokentype_eof);
892 UNUSED(tokenp);