Lines Matching defs:next
69 * unpack_table - unpack a dfa table (one of accept, default, base, next check)
174 /* next.size == chk.size */
231 pr_err("AppArmor DFA next/check upper bounds error\n");
409 #define match_char(state, def, base, next, check, C) \
419 (state) = (next)[pos]; \
444 u16 *next = NEXT_TABLE(dfa);
456 match_char(state, def, base, next, check,
459 /* default is direct to next state */
461 match_char(state, def, base, next, check, (u8) *str++);
483 u16 *next = NEXT_TABLE(dfa);
494 /* default is direct to next state */
496 match_char(state, def, base, next, check,
499 /* default is direct to next state */
501 match_char(state, def, base, next, check, (u8) *str++);
508 * aa_dfa_next - step one character to the next state in the dfa
521 u16 *next = NEXT_TABLE(dfa);
528 match_char(state, def, base, next, check, equiv[(u8) c]);
530 match_char(state, def, base, next, check, (u8) c);
539 u16 *next = NEXT_TABLE(dfa);
547 match_char(state, def, base, next, check, -1);
570 u16 *next = NEXT_TABLE(dfa);
582 /* default is direct to next state */
586 state = next[pos];
593 /* default is direct to next state */
597 state = next[pos];
631 u16 *next = NEXT_TABLE(dfa);
644 /* default is direct to next state */
648 state = next[pos];
655 /* default is direct to next state */
659 state = next[pos];
707 u16 *next = NEXT_TABLE(dfa);
724 /* default is direct to next state */
731 state = next[pos];
743 /* default is direct to next state */
750 state = next[pos];