Home
last modified time | relevance | path

Searched refs:cops (Results 1 – 21 of 21) sorted by relevance

/Linux-v6.1/sound/soc/
Dsoc-dai.c716 if (dai->driver->cops && in snd_soc_dai_compr_startup()
717 dai->driver->cops->startup) in snd_soc_dai_compr_startup()
718 ret = dai->driver->cops->startup(cstream, dai); in snd_soc_dai_compr_startup()
735 if (dai->driver->cops && in snd_soc_dai_compr_shutdown()
736 dai->driver->cops->shutdown) in snd_soc_dai_compr_shutdown()
737 dai->driver->cops->shutdown(cstream, dai); in snd_soc_dai_compr_shutdown()
749 if (dai->driver->cops && in snd_soc_dai_compr_trigger()
750 dai->driver->cops->trigger) in snd_soc_dai_compr_trigger()
751 ret = dai->driver->cops->trigger(cstream, cmd, dai); in snd_soc_dai_compr_trigger()
763 if (dai->driver->cops && in snd_soc_dai_compr_set_params()
[all …]
/Linux-v6.1/net/sched/
Dsch_api.c152 const struct Qdisc_class_ops *cops = qops->cl_ops; in register_qdisc() local
154 if (!(cops->find && cops->walk && cops->leaf)) in register_qdisc()
157 if (cops->tcf_block && !(cops->bind_tcf && cops->unbind_tcf)) in register_qdisc()
338 const struct Qdisc_class_ops *cops = p->ops->cl_ops; in qdisc_leaf() local
340 if (cops == NULL) in qdisc_leaf()
342 cl = cops->find(p, classid); in qdisc_leaf()
346 return cops->leaf(p, cl); in qdisc_leaf()
775 const struct Qdisc_class_ops *cops; in qdisc_tree_reduce_backlog() local
808 cops = sch->ops->cl_ops; in qdisc_tree_reduce_backlog()
809 if (notify && cops->qlen_notify) { in qdisc_tree_reduce_backlog()
[all …]
Dcls_api.c1047 const struct Qdisc_class_ops *cops; in __tcf_qdisc_find() local
1084 cops = (*q)->ops->cl_ops; in __tcf_qdisc_find()
1085 if (!cops) { in __tcf_qdisc_find()
1091 if (!cops->tcf_block) { in __tcf_qdisc_find()
1126 const struct Qdisc_class_ops *cops = q->ops->cl_ops; in __tcf_qdisc_cl_find() local
1128 *cl = cops->find(q, parent); in __tcf_qdisc_cl_find()
1152 const struct Qdisc_class_ops *cops = q->ops->cl_ops; in __tcf_block_find() local
1154 block = cops->tcf_block(q, cl, extack); in __tcf_block_find()
2595 const struct Qdisc_class_ops *cops; in tc_dump_tfilter() local
2610 cops = q->ops->cl_ops; in tc_dump_tfilter()
[all …]
/Linux-v6.1/Documentation/networking/device_drivers/appletalk/
Dcops.rst4 The COPS LocalTalk Linux driver (cops.c)
37 Use modprobe like this: /sbin/modprobe cops.o (IO #) (IRQ #)
43 insmod cops io=0x240 irq=5
44 insmod -o cops2 cops io=0x260 irq=3
62 it work with the cops.c driver.
Dindex.rst11 cops
/Linux-v6.1/drivers/video/fbdev/
Damifb.c2055 copins *copl, *cops; in ami_set_sprite() local
2060 cops = copdisplay.list[currentcop][0]; in ami_set_sprite()
2096 cops[cop_spr0ptrh].w[1] = highw(ps); in ami_set_sprite()
2097 cops[cop_spr0ptrl].w[1] = loww(ps); in ami_set_sprite()
2151 copins *copl, *cops; in ami_rebuild_copper() local
2194 cops = copdisplay.rebuild[0]; in ami_rebuild_copper()
2204 (cops++)->l = CMOVE(highw(p), bplpt[i]); in ami_rebuild_copper()
2205 (cops++)->l = CMOVE2(loww(p), bplpt[i]); in ami_rebuild_copper()
2209 (cops++)->l = CWAIT(h_end1, 510); in ami_rebuild_copper()
2213 (cops++)->l = CWAIT(h_end1, line); in ami_rebuild_copper()
[all …]
/Linux-v6.1/fs/f2fs/
Dcompress.c620 const struct f2fs_compress_ops *cops = in f2fs_compress_pages() local
629 if (cops->init_compress_ctx) { in f2fs_compress_pages()
630 ret = cops->init_compress_ctx(cc); in f2fs_compress_pages()
665 ret = cops->compress_pages(cc); in f2fs_compress_pages()
703 if (cops->destroy_compress_ctx) in f2fs_compress_pages()
704 cops->destroy_compress_ctx(cc); in f2fs_compress_pages()
724 if (cops->destroy_compress_ctx) in f2fs_compress_pages()
725 cops->destroy_compress_ctx(cc); in f2fs_compress_pages()
741 const struct f2fs_compress_ops *cops = in f2fs_decompress_cluster() local
769 ret = cops->decompress_pages(dic); in f2fs_decompress_cluster()
[all …]
/Linux-v6.1/drivers/gpu/drm/i915/gt/
Dintel_engine.h295 GEM_BUG_ON(!engines[0]->cops->create_parallel); in intel_engine_create_parallel()
296 return engines[0]->cops->create_parallel(engines, num_engines, width); in intel_engine_create_parallel()
329 return engine->cops->get_sibling(engine, sibling); in intel_engine_get_sibling()
Dintel_context.c378 GEM_BUG_ON(!engine->cops); in intel_context_init()
384 ce->ops = engine->cops; in intel_context_init()
Dintel_engine_types.h492 const struct intel_context_ops *cops; member
Dmock_engine.c365 engine->base.cops = &mock_context_ops; in mock_engine()
Dintel_engine_cs.c2237 GEM_BUG_ON(!siblings[0]->cops->create_virtual); in intel_engine_create_virtual()
2238 return siblings[0]->cops->create_virtual(siblings, count, flags); in intel_engine_create_virtual()
Dintel_ring_submission.c1137 engine->cops = &ring_context_ops; in setup_common()
Dintel_execlists_submission.c3427 engine->cops = &execlists_context_ops; in logical_ring_default_vfuncs()
3968 ve->base.cops = &virtual_context_ops; in execlists_create_virtual()
/Linux-v6.1/drivers/net/appletalk/
DMakefile7 obj-$(CONFIG_COPS) += cops.o
DKconfig54 <file:Documentation/networking/device_drivers/appletalk/cops.rst>.
/Linux-v6.1/drivers/firmware/
Dti_sci.c2810 struct ti_sci_clk_ops *cops = &ops->clk_ops; in ti_sci_setup_ops() local
2835 cops->get_clock = ti_sci_cmd_get_clock; in ti_sci_setup_ops()
2836 cops->idle_clock = ti_sci_cmd_idle_clock; in ti_sci_setup_ops()
2837 cops->put_clock = ti_sci_cmd_put_clock; in ti_sci_setup_ops()
2838 cops->is_auto = ti_sci_cmd_clk_is_auto; in ti_sci_setup_ops()
2839 cops->is_on = ti_sci_cmd_clk_is_on; in ti_sci_setup_ops()
2840 cops->is_off = ti_sci_cmd_clk_is_off; in ti_sci_setup_ops()
2842 cops->set_parent = ti_sci_cmd_clk_set_parent; in ti_sci_setup_ops()
2843 cops->get_parent = ti_sci_cmd_clk_get_parent; in ti_sci_setup_ops()
2844 cops->get_num_parents = ti_sci_cmd_clk_get_num_parents; in ti_sci_setup_ops()
[all …]
/Linux-v6.1/include/sound/
Dsoc-dai.h412 const struct snd_soc_cdai_ops *cops; member
/Linux-v6.1/net/core/
Drtnetlink.c4464 const struct net_device_ops *cops = NULL; in rtnl_fdb_dump() local
4505 cops = br_dev->netdev_ops; in rtnl_fdb_dump()
4515 cops = ops; in rtnl_fdb_dump()
4522 if (cops && cops->ndo_fdb_dump) { in rtnl_fdb_dump()
4523 err = cops->ndo_fdb_dump(skb, cb, in rtnl_fdb_dump()
4541 cops = NULL; in rtnl_fdb_dump()
/Linux-v6.1/sound/soc/sof/
Dsof-client-probes.c580 .cops = &sof_probes_compr_ops,
/Linux-v6.1/drivers/gpu/drm/i915/gt/uc/
Dintel_guc_submission.c4056 engine->cops = &guc_context_ops; in guc_default_vfuncs()
5086 ve->base.cops = &virtual_guc_context_ops; in guc_create_virtual()