Lines Matching refs:match
232 [OP_MATCH] = "match",
1773 bool match = false;
1780 match = (streq(key_value, val));
1783 match = (fnmatch(key_value, val, 0) == 0);
1799 match = (matchlen == len && strneq(s, val, matchlen));
1800 if (match)
1803 match = (streq(s, val));
1822 match = (fnmatch(key_value, val, 0) == 0);
1823 if (match)
1830 match = (val[0] != '\0');
1836 if (match && (token->key.op == OP_MATCH))
1838 if (!match && (token->key.op == OP_NOMATCH))
1870 /* remove trailing whitespace, if not asked to match for it */
1915 /* loop through token list, match, run actions or forward to next rule */
1943 bool match = false;
1950 match = true;
1954 if (!match)
1986 bool match = false;
1990 match = true;
1994 if (!match && (cur->key.op != OP_NOMATCH))
2054 /* loop over sequence of parent match keys */
2075 bool match = udev_device_has_tag(event->dev_parent, rules_str(rules, cur->key.value_off));
2077 if (match && key->key.op == OP_NOMATCH)
2079 if (!match && key->key.op == OP_MATCH)
2094 /* move behind our sequence of parent match keys */
2101 int match;
2115 match = (stat(filename, &statbuf) == 0);
2116 if (match && cur->key.mode > 0)
2117 match = ((statbuf.st_mode & cur->key.mode) > 0);
2118 if (match && cur->key.op == OP_NOMATCH)
2120 if (!match && cur->key.op == OP_MATCH)
2783 /* loop through token list, match, run actions or forward to next rule */
2813 log_debug("found a match! NAME assigns %s in: %s:%u\n",