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++);
484 u16 *next = NEXT_TABLE(dfa);
495 /* default is direct to next state */
497 match_char(state, def, base, next, check,
500 /* default is direct to next state */
502 match_char(state, def, base, next, check, (u8) *str++);
509 * aa_dfa_next - step one character to the next state in the dfa
523 u16 *next = NEXT_TABLE(dfa);
530 match_char(state, def, base, next, check, equiv[(u8) c]);
532 match_char(state, def, base, next, check, (u8) c);
541 u16 *next = NEXT_TABLE(dfa);
549 match_char(state, def, base, next, check, -1);
572 u16 *next = NEXT_TABLE(dfa);
584 /* default is direct to next state */
588 state = next[pos];
595 /* default is direct to next state */
599 state = next[pos];
633 u16 *next = NEXT_TABLE(dfa);
646 /* default is direct to next state */
650 state = next[pos];
657 /* default is direct to next state */
661 state = next[pos];
709 u16 *next = NEXT_TABLE(dfa);
726 /* default is direct to next state */
733 state = next[pos];
745 /* default is direct to next state */
752 state = next[pos];