Searched refs:pattern (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
D | fnmatch.c | 99 classmatch(const char *pattern, char test, int foldcase, const char **ep) in classmatch() argument 105 const char * const mismatch = pattern; in classmatch() 107 if (*pattern != '[' || pattern[1] != ':') { in classmatch() 112 pattern += 2; in classmatch() 114 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') { in classmatch() 119 len = (size_t)(colon - pattern); in classmatch() 121 if (foldcase && strncmp(pattern, "upper:]", 7) == 0) in classmatch() 122 pattern = "lower:]"; in classmatch() 124 if (!strncmp(pattern, cc->name, len) && cc->name[len] == '\0') { in classmatch() 145 static int fnmatch_ch(const char **pattern, const char **string, int flags) in fnmatch_ch() argument [all …]
|
/bionic/libc/include/ |
D | fnmatch.h | 47 int fnmatch(const char* pattern, const char* string, int flags);
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
D | xt_string.h | 35 char pattern[XT_STRING_MAX_PATTERN_SIZE]; member
|
/bionic/libc/malloc_debug/ |
D | README_marshmallow_and_earlier.md | 67 pattern (0xeb). This does not happen for the calloc calls. 68 Whenever an allocation is freed, write a known pattern over the data (0xef). 79 a front guard). This buffer is filled with the pattern (0xaa). In addition, 81 as a rear guard). This buffer is filled with the pattern (0xbb). 94 on the list is removed and verified that it still contains the pattern 0xef.
|
D | README.md | 46 On first allocation, this front guard is written with a specific pattern (0xaa). 72 On first allocation, this rear guard is written with a specific pattern (0xbb).
|
/bionic/libc/kernel/uapi/linux/ |
D | scc.h | 166 unsigned char pattern; member
|
/bionic/libc/tools/ |
D | gensyscalls.py | 571 pattern = re.compile(r'^\s*#\s*define\s*__NR_([a-z]\S+)') 581 m = re.search(pattern, line)
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 236 const char *pattern, in regcomp() argument 251 _DIAGASSERT(pattern != NULL); in regcomp() 258 if (preg->re_endp < pattern) in regcomp() 260 len = preg->re_endp - pattern; in regcomp() 262 len = strlen(pattern); in regcomp() 278 p->next = pattern; in regcomp()
|