Lines Matching refs:matches

217 /* Verify that the type id in the stream matches the type id of the keyset */
307 /* Find the subword width of the key typegroup that matches the stream data */
1360 /* Find the subword width of the action typegroup that matches the stream data
1483 struct vcap_keyset_list matches;
1493 matches.keysets = keysets;
1494 matches.cnt = 0;
1495 matches.max = ARRAY_SIZE(keysets);
1497 false, 0, &matches);
1503 keyset = matches.keysets[0];
1839 /* Return the keyfield that matches a key in a keyset */
1868 struct vcap_keyset_list *matches)
1884 matches->cnt = 0;
1899 if (!vcap_keyset_list_add(matches, keyset))
1904 return matches->cnt > 0;
1909 struct vcap_keyset_list *matches)
1913 return _vcap_rule_find_keysets(ri, matches);
1917 /* Return the actionfield that matches a action in a actionset */
1946 struct vcap_actionset_list *matches)
1962 matches->cnt = 0;
1978 if (!vcap_actionset_list_add(matches, actionset))
1983 return matches->cnt > 0;
1990 struct vcap_keyset_list matches = {};
2006 matches.keysets = keysets;
2007 matches.max = ARRAY_SIZE(keysets);
2010 if (!_vcap_rule_find_keysets(ri, &matches)) {
2017 matches.cnt = 1;
2022 &matches, l3_proto);
2037 struct vcap_actionset_list matches = {};
2040 matches.actionsets = actionsets;
2041 matches.max = ARRAY_SIZE(actionsets);
2044 if (!vcap_rule_find_actionsets(ri, &matches)) {
3321 struct vcap_keyset_list *matches)
3332 vcap_keyset_list_add(matches, idx);
3339 /* Get the keysets that matches the rule key type/mask */
3341 struct vcap_keyset_list *matches)
3352 return vcap_rule_get_untyped_keyset(ri, matches);
3370 vcap_keyset_list_add(matches, idx);
3375 vcap_keyset_list_add(matches, idx);
3377 if (matches->cnt > 0)