/kernel/linux/linux-5.10/drivers/hid/ |
H A D | hid-multitouch.c | 691 struct mt_class *cls = &td->mtclass; in mt_touch_input_mapping() local 724 set_abs(hi->input, code, field, cls->sn_move); in mt_touch_input_mapping() 749 set_abs(hi->input, code, field, cls->sn_move); in mt_touch_input_mapping() 765 if ((cls->name == MT_CLS_WIN_8 || in mt_touch_input_mapping() 766 cls->name == MT_CLS_WIN_8_FORCE_MULTI_INPUT) && in mt_touch_input_mapping() 792 cls->sn_width); in mt_touch_input_mapping() 798 cls->sn_height); in mt_touch_input_mapping() 813 cls->sn_pressure); in mt_touch_input_mapping() 834 cls->sn_move ? in mt_touch_input_mapping() 835 field->logical_maximum / cls in mt_touch_input_mapping() 1247 struct mt_class *cls = &td->mtclass; mt_touch_input_configured() local 1418 struct mt_class *cls = &td->mtclass; mt_need_to_apply_feature() local [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | test_tc_bpf.c | 11 int cls(struct __sk_buff *skb) in cls() function
|
/kernel/linux/common_modules/newip/src/linux-5.10/drivers/net/bt/ |
H A D | btdev.c | 917 struct class *cls = class_create(THIS_MODULE, "bt"); in bt_dev_class_create() local 919 if (IS_ERR(cls)) { in bt_dev_class_create() 923 return cls; in bt_dev_class_create() 926 static void bt_dev_class_destroy(struct class *cls) in bt_dev_class_destroy() argument 928 if (unlikely(!cls)) in bt_dev_class_destroy() 931 class_destroy(cls); in bt_dev_class_destroy() 940 struct class *cls, in bt_cdev_device_create() 947 if (unlikely(!cls)) { in bt_cdev_device_create() 952 dev->bt_class = cls; in bt_cdev_device_create() 953 device = device_create(cls, NUL in bt_cdev_device_create() 939 bt_cdev_device_create(struct bt_cdev *dev, struct class *cls, u32 id) bt_cdev_device_create() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/dsa/sja1105/ |
H A D | sja1105.h | 342 struct flow_cls_offload *cls, bool ingress); 344 struct flow_cls_offload *cls, bool ingress); 346 struct flow_cls_offload *cls, bool ingress);
|
/kernel/linux/linux-6.6/drivers/net/dsa/sja1105/ |
H A D | sja1105.h | 416 struct flow_cls_offload *cls, bool ingress); 418 struct flow_cls_offload *cls, bool ingress); 420 struct flow_cls_offload *cls, bool ingress);
|
/kernel/linux/linux-5.10/drivers/net/dsa/ocelot/ |
H A D | felix.c | 728 struct flow_cls_offload *cls, bool ingress) in felix_cls_flower_add() 732 return ocelot_cls_flower_replace(ocelot, port, cls, ingress); in felix_cls_flower_add() 736 struct flow_cls_offload *cls, bool ingress) in felix_cls_flower_del() 740 return ocelot_cls_flower_destroy(ocelot, port, cls, ingress); in felix_cls_flower_del() 744 struct flow_cls_offload *cls, bool ingress) in felix_cls_flower_stats() 748 return ocelot_cls_flower_stats(ocelot, port, cls, ingress); in felix_cls_flower_stats() 727 felix_cls_flower_add(struct dsa_switch *ds, int port, struct flow_cls_offload *cls, bool ingress) felix_cls_flower_add() argument 735 felix_cls_flower_del(struct dsa_switch *ds, int port, struct flow_cls_offload *cls, bool ingress) felix_cls_flower_del() argument 743 felix_cls_flower_stats(struct dsa_switch *ds, int port, struct flow_cls_offload *cls, bool ingress) felix_cls_flower_stats() argument
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | test_offload.py | 545 chain=None, cls="", params="", 555 return tc("filter {op} dev {dev} {qdisc} {spec} {cls} {params}"\ 557 cls=cls, params=params), 564 cls = "bpf " + bpf 576 return self.cls_filter_op(op=op, prio=prio, handle=handle, cls=cls, 687 res = sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf", 881 sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf") 885 sim.cls_filter_op(op="delete", prio=1, handle=1, cls [all...] |
H A D | test_bpftool.py | 63 def setUpClass(cls):
|
/kernel/linux/linux-6.6/drivers/net/ethernet/ti/ |
H A D | cpsw_priv.c | 1388 struct flow_cls_offload *cls, in cpsw_qos_clsflower_add_policer() 1391 struct flow_rule *rule = flow_cls_offload_flow_rule(cls); in cpsw_qos_clsflower_add_policer() 1428 priv->ale_bc_ratelimit.cookie = cls->cookie; in cpsw_qos_clsflower_add_policer() 1436 priv->ale_mc_ratelimit.cookie = cls->cookie; in cpsw_qos_clsflower_add_policer() 1480 static int cpsw_qos_configure_clsflower(struct cpsw_priv *priv, struct flow_cls_offload *cls) in cpsw_qos_configure_clsflower() argument 1482 struct flow_rule *rule = flow_cls_offload_flow_rule(cls); in cpsw_qos_configure_clsflower() 1483 struct netlink_ext_ack *extack = cls->common.extack; in cpsw_qos_configure_clsflower() 1494 return cpsw_qos_clsflower_add_policer(priv, extack, cls, in cpsw_qos_configure_clsflower() 1504 static int cpsw_qos_delete_clsflower(struct cpsw_priv *priv, struct flow_cls_offload *cls) in cpsw_qos_delete_clsflower() argument 1508 if (cls in cpsw_qos_delete_clsflower() 1386 cpsw_qos_clsflower_add_policer(struct cpsw_priv *priv, struct netlink_ext_ack *extack, struct flow_cls_offload *cls, u64 rate_pkt_ps) cpsw_qos_clsflower_add_policer() argument [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_offload.py | 545 chain=None, cls="", params="", 555 return tc("filter {op} dev {dev} {qdisc} {spec} {cls} {params}"\ 557 cls=cls, params=params), 564 cls = "bpf " + bpf 576 return self.cls_filter_op(op=op, prio=prio, handle=handle, cls=cls, 687 res = sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf", 883 sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf") 887 sim.cls_filter_op(op="delete", prio=1, handle=1, cls [all...] |
H A D | test_bpftool.py | 68 def setUpClass(cls):
|
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | sata_vsc.c | 334 u8 cls; in vsc_sata_init_one() local 382 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cls); in vsc_sata_init_one() 383 if (cls == 0x00) in vsc_sata_init_one()
|
/kernel/linux/linux-6.6/drivers/ata/ |
H A D | sata_vsc.c | 334 u8 cls; in vsc_sata_init_one() local 382 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cls); in vsc_sata_init_one() 383 if (cls == 0x00) in vsc_sata_init_one()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/ |
H A D | Makefile | 68 abm/cls.o \
|
/kernel/linux/linux-5.10/drivers/staging/media/ipu3/ |
H A D | ipu3-css-fw.h | 183 enum imgu_abi_param_class cls,
|
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/ |
H A D | Makefile | 77 abm/cls.o \
|
/kernel/linux/linux-6.6/drivers/staging/media/ipu3/ |
H A D | ipu3-css-fw.h | 186 enum imgu_abi_param_class cls,
|
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | bus.c | 714 if (!id->cls) in __acpi_match_device_cls() 724 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk); in __acpi_match_device_cls() 750 for (id = acpi_ids; id->id[0] || id->cls; id++) { in __acpi_match_device() 753 if (id->cls && __acpi_match_device_cls(id, hwid)) in __acpi_match_device()
|
/kernel/linux/linux-6.6/drivers/acpi/ |
H A D | bus.c | 818 if (!id->cls) in __acpi_match_device_cls() 828 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk); in __acpi_match_device_cls() 854 for (id = acpi_ids; id->id[0] || id->cls; id++) { in __acpi_match_device() 857 if (id->cls && __acpi_match_device_cls(id, hwid)) in __acpi_match_device()
|
/kernel/linux/linux-5.10/include/net/ |
H A D | dsa.h | 594 struct flow_cls_offload *cls, bool ingress); 596 struct flow_cls_offload *cls, bool ingress); 598 struct flow_cls_offload *cls, bool ingress);
|
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/enetc/ |
H A D | enetc_qos.c | 124 cbd.cls = BDCR_CMD_PORT_GCL; in enetc_setup_taprio() 489 cbd.cls = BDCR_CMD_STREAM_IDENTIFY; in enetc_streamid_hw_set() 533 cbd.cls = BDCR_CMD_STREAM_IDENTIFY; in enetc_streamid_hw_set() 589 cbd.cls = BDCR_CMD_STREAM_FILTER; in enetc_streamfilter_hw_set() 645 cbd.cls = BDCR_CMD_STREAM_FILTER; in enetc_streamcounter_hw_get() 739 cbd.cls = BDCR_CMD_STREAM_GCL; in enetc_streamgate_hw_set() 773 cbd.cls = BDCR_CMD_STREAM_GCL; in enetc_streamgate_hw_set() 867 cbd.cls = BDCR_CMD_FLOW_METER; in enetc_flowmeter_hw_set()
|
/kernel/linux/linux-5.10/net/ceph/ |
H A D | osd_client.c | 273 osd_data = osd_req_op_data(osd_req, which, cls, request_info); in osd_req_op_cls_request_info_pagelist() 283 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_pagelist() 285 osd_req->r_ops[which].cls.indata_len += pagelist->length; in osd_req_op_cls_request_data_pagelist() 296 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_pages() 299 osd_req->r_ops[which].cls.indata_len += length; in osd_req_op_cls_request_data_pages() 315 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_bvecs() 317 osd_req->r_ops[which].cls.indata_len += bytes; in osd_req_op_cls_request_data_bvecs() 328 osd_data = osd_req_op_data(osd_req, which, cls, response_data); in osd_req_op_cls_response_data_pages() 384 ceph_osd_data_release(&op->cls.request_info); in osd_req_op_data_release() 385 ceph_osd_data_release(&op->cls in osd_req_op_data_release() [all...] |
/kernel/linux/linux-6.6/net/ceph/ |
H A D | osd_client.c | 296 osd_data = osd_req_op_data(osd_req, which, cls, request_info); in osd_req_op_cls_request_info_pagelist() 306 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_pagelist() 308 osd_req->r_ops[which].cls.indata_len += pagelist->length; in osd_req_op_cls_request_data_pagelist() 319 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_pages() 322 osd_req->r_ops[which].cls.indata_len += length; in osd_req_op_cls_request_data_pages() 338 osd_data = osd_req_op_data(osd_req, which, cls, request_data); in osd_req_op_cls_request_data_bvecs() 340 osd_req->r_ops[which].cls.indata_len += bytes; in osd_req_op_cls_request_data_bvecs() 351 osd_data = osd_req_op_data(osd_req, which, cls, response_data); in osd_req_op_cls_response_data_pages() 411 ceph_osd_data_release(&op->cls.request_info); in osd_req_op_data_release() 412 ceph_osd_data_release(&op->cls in osd_req_op_data_release() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/enetc/ |
H A D | enetc_qos.c | 109 cbd.cls = BDCR_CMD_PORT_GCL; in enetc_setup_taprio() 537 cbd.cls = BDCR_CMD_STREAM_IDENTIFY; in enetc_streamid_hw_set() 616 cbd.cls = BDCR_CMD_STREAM_FILTER; in enetc_streamfilter_hw_set() 673 cbd.cls = BDCR_CMD_STREAM_FILTER; in enetc_streamcounter_hw_get() 756 cbd.cls = BDCR_CMD_STREAM_GCL; in enetc_streamgate_hw_set() 790 cbd.cls = BDCR_CMD_STREAM_GCL; in enetc_streamgate_hw_set() 869 cbd.cls = BDCR_CMD_FLOW_METER; in enetc_flowmeter_hw_set()
|
/kernel/linux/linux-5.10/drivers/media/platform/ti-vpe/ |
H A D | vpdma_priv.h | 474 static inline u32 cfd_pkt_payload_len(bool direct, int cls, int dest, in cfd_pkt_payload_len() argument 479 (cls << CFD_CLASS_SHFT) | in cfd_pkt_payload_len()
|