~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/textsearch_fsm.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __LINUX_TEXTSEARCH_FSM_H
  3 #define __LINUX_TEXTSEARCH_FSM_H
  4 
  5 #include <linux/types.h>
  6 
  7 enum {
  8         TS_FSM_SPECIFIC,        /* specific character */
  9         TS_FSM_WILDCARD,        /* any character */
 10         TS_FSM_DIGIT,           /* isdigit() */
 11         TS_FSM_XDIGIT,          /* isxdigit() */
 12         TS_FSM_PRINT,           /* isprint() */
 13         TS_FSM_ALPHA,           /* isalpha() */
 14         TS_FSM_ALNUM,           /* isalnum() */
 15         TS_FSM_ASCII,           /* isascii() */
 16         TS_FSM_CNTRL,           /* iscntrl() */
 17         TS_FSM_GRAPH,           /* isgraph() */
 18         TS_FSM_LOWER,           /* islower() */
 19         TS_FSM_UPPER,           /* isupper() */
 20         TS_FSM_PUNCT,           /* ispunct() */
 21         TS_FSM_SPACE,           /* isspace() */
 22         __TS_FSM_TYPE_MAX,
 23 };
 24 #define TS_FSM_TYPE_MAX (__TS_FSM_TYPE_MAX - 1)
 25 
 26 enum {
 27         TS_FSM_SINGLE,          /* 1 occurrence */
 28         TS_FSM_PERHAPS,         /* 1 or 0 occurrence */
 29         TS_FSM_ANY,             /* 0..n occurrences */
 30         TS_FSM_MULTI,           /* 1..n occurrences */
 31         TS_FSM_HEAD_IGNORE,     /* 0..n ignored occurrences at head */
 32         __TS_FSM_RECUR_MAX,
 33 };
 34 #define TS_FSM_RECUR_MAX (__TS_FSM_RECUR_MAX - 1)
 35 
 36 /**
 37  * struct ts_fsm_token - state machine token (state)
 38  * @type: type of token
 39  * @recur: number of recurrences
 40  * @value: character value for TS_FSM_SPECIFIC
 41  */
 42 struct ts_fsm_token
 43 {
 44         __u16           type;
 45         __u8            recur;
 46         __u8            value;
 47 };
 48 
 49 #endif
 50 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php