Lines Matching defs:next
26 * unpack_table - unpack a dfa table (one of accept, default, base, next check)
131 /* next.size == chk.size */
189 pr_err("AppArmor DFA next/check upper bounds error\n");
440 #define match_char(state, def, base, next, check, C) \
450 (state) = (next)[pos]; \
475 u32 *next = NEXT_TABLE(dfa);
489 match_char(state, def, base, next, check, c);
493 /* default is direct to next state */
495 match_char(state, def, base, next, check, (u8) *str);
519 u32 *next = NEXT_TABLE(dfa);
530 /* default is direct to next state */
534 match_char(state, def, base, next, check, c);
538 /* default is direct to next state */
540 match_char(state, def, base, next, check, (u8) *str);
549 * aa_dfa_next - step one character to the next state in the dfa
562 u32 *next = NEXT_TABLE(dfa);
569 match_char(state, def, base, next, check, equiv[(u8) c]);
571 match_char(state, def, base, next, check, (u8) c);
580 u32 *next = NEXT_TABLE(dfa);
588 match_char(state, def, base, next, check, -1);
611 u32 *next = NEXT_TABLE(dfa);
623 /* default is direct to next state */
627 state = next[pos];
634 /* default is direct to next state */
638 state = next[pos];
672 u32 *next = NEXT_TABLE(dfa);
685 /* default is direct to next state */
689 state = next[pos];
696 /* default is direct to next state */
700 state = next[pos];
749 u32 *next = NEXT_TABLE(dfa);
766 /* default is direct to next state */
773 state = next[pos];
785 /* default is direct to next state */
792 state = next[pos];