Lines Matching refs:tokenid
161 int tokenid = context->tokenid; in checkpoint_progress() local
163 if (is_file_token(tokenid) || is_header_token(tokenid)) { in checkpoint_progress()
169 if (is_file_token(tokenid)) { in checkpoint_progress()
352 if (pr_adr_char(context, (char *)&(context->tokenid), 1) == 0) { in print_audit_common()
400 int tokenid = context->tokenid; in token_processing() local
402 if ((tokenid > 0) && (tokenid <= MAXTOKEN) && in token_processing()
403 (tokentable[tokenid].func != NOFUNC)) { in token_processing()
408 if ((retstat = check_close_rec(context, tokenid)) != 0) in token_processing()
414 retstat = open_tag(context, tokenid); in token_processing()
417 (tokentable[tokenid].t_name != (char *)0)) { in token_processing()
420 gettext(tokentable[tokenid].t_name); in token_processing()
423 uval.char_val = tokenid; in token_processing()
428 retstat = (*tokentable[tokenid].func)(context); in token_processing()
436 if (!is_header_token(tokenid)) in token_processing()
437 retstat = close_tag(context, tokenid); in token_processing()
445 "token id %d\n"), tokenid); in token_processing()