Lines Matching refs:tokenid
159 int tokenid = context->tokenid; in checkpoint_progress() local
161 if (is_file_token(tokenid) || is_header_token(tokenid)) { in checkpoint_progress()
167 if (is_file_token(tokenid)) { in checkpoint_progress()
350 if (pr_adr_char(context, (char *)&(context->tokenid), 1) == 0) { in print_audit_common()
398 int tokenid = context->tokenid; in token_processing() local
400 if ((tokenid > 0) && (tokenid <= MAXTOKEN) && in token_processing()
401 (tokentable[tokenid].func != NOFUNC)) { in token_processing()
406 if ((retstat = check_close_rec(context, tokenid)) != 0) in token_processing()
412 retstat = open_tag(context, tokenid); in token_processing()
415 (tokentable[tokenid].t_name != (char *)0)) { in token_processing()
418 gettext(tokentable[tokenid].t_name); in token_processing()
421 uval.char_val = tokenid; in token_processing()
426 retstat = (*tokentable[tokenid].func)(context); in token_processing()
434 if (!is_header_token(tokenid)) in token_processing()
435 retstat = close_tag(context, tokenid); in token_processing()
443 "token id %d\n"), tokenid); in token_processing()