Searched refs:match (Results 476 - 500 of 1163) sorted by relevance

<<11121314151617181920>>

/linux-master/security/
H A Ddevice_cgroup.c315 * match_exception - iterates the exception list trying to find a complete match
318 * @major: device file major number, ~0 to match all
319 * @minor: device file minor number, ~0 to match all
322 * It is considered a complete match if an exception is found that will
350 * match_exception_partial - iterates the exception list trying to find a partial match
353 * @major: device file major number, ~0 to match all
354 * @minor: device file minor number, ~0 to match all
357 * It is considered a partial match if an exception's range is found to
385 * an exception, all its access bits shouldn't match the
408 bool match local
[all...]
/linux-master/drivers/watchdog/
H A Dorion_wdt.c557 const struct of_device_id *match; local
566 match = of_match_device(orion_wdt_of_match_table, &pdev->dev);
567 if (!match)
568 /* Default legacy match */
569 match = &orion_wdt_of_match_table[0];
574 dev->data = match->data;
/linux-master/drivers/target/iscsi/
H A Discsi_target_tpg.c429 bool match = false; local
438 match = iscsit_check_np_match(sockaddr, np,
440 if (match)
445 if (match)
450 return match;
/linux-master/drivers/gpu/drm/atmel-hlcdc/
H A Datmel_hlcdc_dc.c649 const struct of_device_id *match; local
653 match = of_match_node(atmel_hlcdc_of_match, dev->dev->parent->of_node);
654 if (!match) {
659 if (!match->data) {
668 dc->desc = match->data;
/linux-master/drivers/crypto/marvell/cesa/
H A Dcesa.c436 const struct of_device_id *match; local
449 match = of_match_node(mv_cesa_of_match_table, dev->of_node);
450 if (!match || !match->data)
453 caps = match->data;
/linux-master/drivers/macintosh/
H A Dmacio_asic.c74 const struct of_device_id *match; local
84 match = of_match_device(drv->driver.of_match_table, dev);
85 if (match)
86 error = drv->probe(macio_dev, match);
141 .match = macio_bus_match,
/linux-master/drivers/spi/
H A Dspi-fsl-spi.c79 const struct of_device_id *match; local
82 match = of_match_node(of_fsl_spi_match, dev->of_node);
83 if (match && match->data)
84 return ((struct fsl_spi_match_data *)match->data)->type;
/linux-master/include/net/
H A Dflow_offload.h440 struct flow_match match; member in struct:flow_rule
449 return dissector_uses_key(rule->match.dissector, key);
468 "Unsupported match on control.flags %#x",
488 * flow_rule_match_has_control_flags() - match and check for any control flags
497 struct flow_match_control match; local
502 flow_rule_match_control(rule, &match);
504 return flow_rule_has_control_flags(match.mask->flags, extack);
/linux-master/net/openvswitch/
H A Ddatapath.c976 struct sw_flow_match match; local
1008 ovs_match_init(&match, key, false, &mask);
1009 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1086 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1089 &match);
1158 /* Factor out match-init and action-copy to avoid
1165 * match as before. If there is action attr, we try to get
1167 * the function, we reset the match->mask pointer. Because
1168 * we should not to return match object with dangling reference
1173 struct sw_flow_match *match,
1172 ovs_nla_init_match_and_action(struct net *net, struct sw_flow_match *match, struct sw_flow_key *key, struct nlattr **a, struct sw_flow_actions **acts, bool log) argument
1222 struct sw_flow_match match; local
1323 struct sw_flow_match match; local
1382 struct sw_flow_match match; local
[all...]
H A Dflow_table.c688 const struct sw_flow_match *match)
690 struct sw_flow_key *key = match->key;
692 int key_end = match->range.end;
868 const struct sw_flow_match *match)
884 flow = masked_flow_lookup(ti, match->key, mask, &n_mask_hit);
886 ovs_flow_cmp_unmasked_key(flow, match)) {
909 const struct sw_flow_match *match)
912 return flow_cmp_masked_key(flow, match->key, &match->range);
914 return ovs_flow_cmp_unmasked_key(flow, match);
687 ovs_flow_cmp_unmasked_key(const struct sw_flow *flow, const struct sw_flow_match *match) argument
867 ovs_flow_tbl_lookup_exact(struct flow_table *tbl, const struct sw_flow_match *match) argument
908 ovs_flow_cmp(const struct sw_flow *flow, const struct sw_flow_match *match) argument
[all...]
/linux-master/scripts/
H A Dspdxcheck.py262 self.match = self.match_file
264 self.match = self.match_dot
267 self.match = self.match_dir
270 self.match = self.match_fn
288 if rule.match(fpath):
/linux-master/drivers/firewire/
H A Dcore-device.c178 int match = 0; local
181 match |= IEEE1394_MATCH_VENDOR_ID;
183 match |= IEEE1394_MATCH_MODEL_ID;
185 match |= IEEE1394_MATCH_SPECIFIER_ID;
187 match |= IEEE1394_MATCH_VERSION;
189 return (match & id_table->match_flags) == id_table->match_flags;
258 .match = fw_unit_match,
780 * match the drivers id_tables against it.
956 int match = 0; local
989 match
[all...]
/linux-master/drivers/staging/rtl8712/
H A Drtl871x_mlme.c360 /* If we didn't find a match, then get a new network slot to initialize
1273 u8 authmode = 0, match; local
1315 match = false;
1322 match = true;
1328 match = true;
1340 if (match) {
1348 match = false;
1353 match = false;
1384 match = false;
1391 match
[all...]
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dops.c906 u8 keylen, match, matchend; local
931 match = 0;
933 if (txf->buf[i] != keydata[match]) {
934 match = 0;
937 match++;
938 if (match == keylen) {
940 match = 0;
945 matchend = match;
946 for (i = 0; match && i < keylen - match;
[all...]
/linux-master/net/devlink/
H A Ddpipe.c61 struct devlink_dpipe_match *match)
63 struct devlink_dpipe_header *header = match->header;
64 struct devlink_dpipe_field *field = &header->fields[match->field_id];
71 if (nla_put_u32(skb, DEVLINK_ATTR_DPIPE_MATCH_TYPE, match->type) ||
72 nla_put_u32(skb, DEVLINK_ATTR_DPIPE_HEADER_INDEX, match->header_index) ||
362 if (!value->match)
364 if (devlink_dpipe_match_put(skb, value->match))
60 devlink_dpipe_match_put(struct sk_buff *skb, struct devlink_dpipe_match *match) argument
/linux-master/drivers/net/phy/
H A Dphy-core.c156 * must be grouped by speed and sorted in descending match priority
273 * @speed: speed to match
274 * @duplex: duplex to match
276 * @exact: an exact match is required
281 * If @exact is unset, either an exact match or %NULL for no match will
284 * If @exact is set, an exact match, the fastest supported setting at
291 const struct phy_setting *p, *match = NULL, *last = NULL; local
299 /* Exact match for speed and duplex */
300 match
[all...]
/linux-master/drivers/media/platform/verisilicon/
H A Dhantro_drv.c886 const struct of_device_id *match; local
891 match = of_match_node(of_hantro_match, vpu->dev->of_node);
908 strscpy(vfd->name, match->compatible, sizeof(vfd->name));
997 const struct of_device_id *match; local
1011 match = of_match_node(of_hantro_match, pdev->dev.of_node);
1012 vpu->variant = match->data;
1021 match->compatible);
/linux-master/drivers/of/
H A Dfdt.c652 * Return: a non-zero value on match with smaller values returned for more
727 * of_flat_dt_match_machine - Iterate match tables to find matching machine.
729 * @default_match: A machine specific ptr to return in case of no match.
730 * @get_next_compat: callback function to return next compatible match table.
732 * Iterate through machine match tables to find the best match for the machine
903 const struct earlycon_id *match; local
931 for (match = __earlycon_table; match < __earlycon_table_end; match
[all...]
H A Daddress.c42 int (*match)(struct device_node *parent); member in struct:of_bus
106 /* Check that flags match */
166 * If none of the device_type match, and that the node name is
191 /* Check address type match */
303 /* Check address type match */
337 .match = of_bus_pci_match,
349 .match = of_bus_isa_match,
360 .match = of_bus_default_flags_match,
371 .match = NULL,
384 if (!of_busses[i].match || of_busse
[all...]
/linux-master/include/linux/
H A Ddevice.h296 dr_match_t match, void *match_data,
302 dr_match_t match, void *match_data);
304 dr_match_t match, void *match_data);
306 dr_match_t match, void *match_data);
308 dr_match_t match, void *match_data);
310 dr_match_t match, void *match_data);
696 * @state_synced: The hardware state of this device has been synced to match
1084 int (*match)(struct device *dev, void *data));
/linux-master/drivers/regulator/
H A Dab8500.c1640 struct of_regulator_match *match; member in struct:__anon2228
1651 abx500_regulator.match = ab8505_regulator_match;
1658 abx500_regulator.match = ab8500_regulator_match;
1706 struct of_regulator_match *match; local
1717 abx500_regulator.match,
1725 match = abx500_regulator.match;
1727 err = ab8500_regulator_register(pdev, match[i].init_data, i,
1728 match[i].of_node);
/linux-master/samples/bpf/
H A Ddo_hbm_test.sh258 begNetserverPid=`ps ax | grep netserver | grep --invert-match "grep" | \
418 hbmPid=`ps ax | grep "hbm " | grep --invert-match "grep" | awk '{ print $1 }'`
431 netserverPid=`ps ax | grep netserver | grep --invert-match "grep" | awk '{ print $1 }'`
/linux-master/net/sctp/
H A Dbind_addr.c189 /* Found the exact match. */
318 int match = 0; local
325 match = 1;
331 return match;
/linux-master/drivers/gpu/drm/bridge/imx/
H A Dimx8qxp-pxl2dpi.c330 const struct of_device_id *match; local
349 match = of_match_device(dev->driver->of_match_table, dev);
350 if (!of_device_is_compatible(companion, match->compatible)) {
/linux-master/arch/arm/mach-exynos/
H A Dsuspend.c664 const struct of_device_id *match; local
668 np = of_find_matching_node_and_match(NULL, exynos_pmu_of_device_ids, &match);
681 pm_data = (const struct exynos_pm_data *) match->data;

Completed in 274 milliseconds

<<11121314151617181920>>