Lines Matching full:pattern
16 * match_one: - Determines if a string matches a simple pattern
17 * @s: the string to examine for presence of the pattern
18 * @p: the string containing the pattern
22 * Description: Determines if the pattern @p is present in string @s. Can only
23 * match extremely simple token=arg style patterns. If the pattern is found,
98 * &struct match_token whose pattern is set to the NULL pointer.
111 for (p = table; !match_one(s, p->pattern, args) ; p++) in match_token()
247 * match_wildcard: - parse if a string matches given wildcard pattern
248 * @pattern: wildcard pattern
252 * pattern @pattern. The pattern may contain two type wildcardes:
257 bool match_wildcard(const char *pattern, const char *str) in match_wildcard() argument
260 const char *p = pattern; in match_wildcard()
274 pattern = p; in match_wildcard()
285 p = pattern; in match_wildcard()