Searched refs:match (Results 126 - 150 of 1161) sorted by relevance

1234567891011>>

/linux-master/drivers/net/ethernet/mediatek/
H A Dmtk_ppe_offload.c264 struct flow_match_meta match; local
266 flow_rule_match_meta(rule, &match);
272 struct flow_match_control match; local
274 flow_rule_match_control(rule, &match);
275 addr_type = match.key->addr_type;
277 if (flow_rule_has_control_flags(match.mask->flags,
285 struct flow_match_basic match; local
287 flow_rule_match_basic(rule, &match);
288 l4proto = match.key->ip_proto;
297 struct flow_match_eth_addrs match; local
307 struct flow_match_vlan match; local
[all...]
/linux-master/arch/sparc/kernel/
H A Dof_device_common.h29 int (*match)(struct device_node *parent); member in struct:of_bus
/linux-master/net/bridge/netfilter/
H A Debt_pkttype.c38 .match = ebt_pkttype_mt,
56 MODULE_DESCRIPTION("Ebtables: Link layer packet type match");
/linux-master/net/netfilter/
H A Dxt_realm.c18 MODULE_DESCRIPTION("Xtables: Routing realm match");
32 .match = realm_mt,
H A Dxt_cpu.c2 /* Kernel module to match running CPU */
20 MODULE_DESCRIPTION("Xtables: CPU match");
45 .match = cpu_mt,
H A Dnft_set_pipapo.h78 #define nft_pipapo_for_each_field(field, index, match) \
79 for ((field) = (match)->f, (index) = 0; \
80 (index) < (match)->field_count; \
155 * @match: Currently in-use matching data
161 struct nft_pipapo_match __rcu *match; member in struct:nft_pipapo
H A Dxt_ipcomp.c2 /* Kernel module to match IPComp parameters for IPv4 and IPv6
24 MODULE_DESCRIPTION("Xtables: IPv4/6 IPsec-IPComp SPI match");
81 .match = comp_mt,
90 .match = comp_mt,
/linux-master/include/uapi/linux/netfilter/
H A Dxt_policy.h63 struct xt_policy_spec match; member in struct:xt_policy_elem
/linux-master/Documentation/trace/postprocess/
H A Ddecode_msr.py11 m = re.match(r'#define (MSR_\w+)\s+(0x[0-9a-fA-F]+)', j)
/linux-master/drivers/i2c/busses/
H A Di2c-pca-isa.c111 int match = base != 0; local
113 if (match) {
119 return match;
176 .match = pca_isa_match,
/linux-master/fs/isofs/
H A Dnamei.c55 int de_len, match, i, dlen; local
130 match = 0;
137 match = (isofs_cmp(dentry, dpnt, dlen) == 0);
139 if (match) {
/linux-master/drivers/input/misc/
H A Dtps65218-pwrbutton.c86 const struct of_device_id *match; local
90 match = of_match_node(of_tps6521x_pb_match, dev->of_node);
91 if (!match)
98 pwr->data = match->data;
/linux-master/drivers/i2c/
H A Di2c-core-of.c125 * a string to match which may be compatible with the device
127 * of_match_device() will not match
149 const struct of_device_id *match; local
154 match = of_match_device(matches, &client->dev);
155 if (match)
156 return match;
/linux-master/drivers/acpi/
H A Dacpi_platform.c116 const struct acpi_device_id *match; local
126 match = acpi_match_acpi_device(forbidden_id_list, adev);
127 if (match) {
128 if (match->driver_data & ACPI_ALLOW_WO_RESOURCES) {
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_ct.c242 struct flow_match_ipv4_addrs match; local
244 flow_rule_match_ipv4_addrs(rule, &match);
245 tuple->ip.src_v4 = match.key->src;
246 tuple->ip.dst_v4 = match.key->dst;
248 struct flow_match_ipv6_addrs match; local
250 flow_rule_match_ipv6_addrs(rule, &match);
251 tuple->ip.src_v6 = match.key->src;
252 tuple->ip.dst_v6 = match.key->dst;
258 struct flow_match_ports match; local
260 flow_rule_match_ports(rule, &match);
378 struct flow_match_basic match; local
392 struct flow_match_control match; local
399 struct flow_match_ipv4_addrs match; local
417 struct flow_match_ipv6_addrs match; local
436 struct flow_match_ports match; local
469 struct flow_match_tcp match; local
479 struct flow_match_meta match; local
1441 struct flow_match_ct match; local
[all...]
/linux-master/arch/arm/mach-shmobile/
H A Dsetup-rcar-gen2.c37 const struct of_device_id *match; local
42 cpg = of_find_matching_node_and_match(NULL, cpg_matches, &match);
46 if (match->data)
47 idx = of_property_match_string(cpg, "clock-names", match->data);
/linux-master/drivers/remoteproc/
H A Dqcom_wcnss_iris.c115 const struct of_device_id *match; local
147 match = of_match_device(iris_of_match, &iris->dev);
148 if (!match) {
154 data = match->data;
/linux-master/arch/alpha/lib/
H A Dev67-strchr.S56 or t2, t3, t0 # E : bits set iff char match or zero match
59 cttz t0, a2 # U0 : speculative (in case we get a match)
76 cttz t3, a2 # U0 : speculative (in case we get a match)
/linux-master/drivers/vfio/mdev/
H A Dmdev_driver.c37 * No drivers automatically match. Drivers are only bound by explicit
47 .match = mdev_match,
/linux-master/tools/testing/selftests/net/lib/py/
H A Dnsim.py20 match = nsimnamere.match(ifname)
21 if match and int(match.groups()[0]) != port_index + 1:
/linux-master/sound/soc/intel/common/
H A Dsoc-acpi-intel-glk-match.c3 * soc-acpi-intel-glk-match.c - tables and support for GLK ACPI enumeration.
10 #include <sound/soc-acpi-intel-match.h>
H A Dsoc-acpi-intel-arl-match.c3 * soc-apci-intel-arl-match.c - tables and support for ARL ACPI enumeration.
9 #include <sound/soc-acpi-intel-match.h>
/linux-master/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_i2c.c101 const void *match; local
112 match = device_get_match_data(&client->dev);
113 if (match) {
114 chip_type = (uintptr_t)match;
/linux-master/drivers/regulator/
H A Drt5190a-regulator.c219 struct of_regulator_match *match)
222 struct regulator_init_data *init_data = match->init_data;
223 struct device_node *np = match->of_node;
324 struct of_regulator_match *match; local
329 match = rt5190a_regulator_match + i;
333 match->desc = reg_desc;
355 match = rt5190a_regulator_match + i;
357 ret = rt5190a_of_parse_cb(priv, i, match);
472 struct of_regulator_match *match = rt5190a_regulator_match + i; local
474 cfg.init_data = match
218 rt5190a_of_parse_cb(struct rt5190a_priv *priv, int rid, struct of_regulator_match *match) argument
[all...]
/linux-master/drivers/dma/ti/
H A Ddma-crossbar.c134 const struct of_device_id *match; local
153 match = of_match_node(ti_am335x_master_match, dma_node);
154 if (!match) {
326 const struct of_device_id *match; local
348 match = of_match_node(ti_dra7_master_match, dma_node);
349 if (!match) {
417 xbar->dma_offset = *(u32 *)match->data;
443 const struct of_device_id *match; local
446 match = of_match_node(ti_dma_xbar_match, pdev->dev.of_node);
447 if (unlikely(!match))
[all...]

Completed in 446 milliseconds

1234567891011>>