Searched refs:frontend (Results 76 - 100 of 250) sorted by relevance

12345678910

/linux-master/crypto/
H A Dapi.c485 const struct crypto_type *frontend, int node,
493 tfmsize = frontend->tfmsize;
494 total = tfmsize + sizeof(*tfm) + frontend->extsize(alg);
509 const struct crypto_type *frontend,
516 mem = crypto_alloc_tfmmem(alg, frontend, node, GFP_KERNEL);
520 tfm = (struct crypto_tfm *)(mem + frontend->tfmsize);
522 err = frontend->init_tfm(tfm);
543 void *crypto_clone_tfm(const struct crypto_type *frontend, argument
554 mem = crypto_alloc_tfmmem(alg, frontend, otfm->node, GFP_ATOMIC);
560 tfm = (struct crypto_tfm *)(mem + frontend
484 crypto_alloc_tfmmem(struct crypto_alg *alg, const struct crypto_type *frontend, int node, gfp_t gfp) argument
508 crypto_create_tfm_node(struct crypto_alg *alg, const struct crypto_type *frontend, int node) argument
569 crypto_find_alg(const char *alg_name, const struct crypto_type *frontend, u32 type, u32 mask) argument
607 crypto_alloc_tfm_node(const char *alg_name, const struct crypto_type *frontend, u32 type, u32 mask, int node) argument
[all...]
/linux-master/drivers/media/usb/ttusb-dec/
H A Dttusbdecfe.c20 struct dvb_frontend frontend; member in struct:ttusbdecfe_state
209 memcpy(&state->frontend.ops, &ttusbdecfe_dvbt_ops, sizeof(struct dvb_frontend_ops));
210 state->frontend.demodulator_priv = state;
211 return &state->frontend;
231 memcpy(&state->frontend.ops, &ttusbdecfe_dvbs_ops, sizeof(struct dvb_frontend_ops));
232 state->frontend.demodulator_priv = state;
233 return &state->frontend;
/linux-master/drivers/media/common/videobuf2/
H A Dvideobuf2-dvb.c41 if (!demux->dmx.frontend)
106 /* register frontend */
107 result = dvb_register_frontend(adapter, dvb->frontend);
182 dvb_unregister_frontend(dvb->frontend);
184 dvb_frontend_detach(dvb->frontend);
185 dvb->frontend = NULL;
284 if (fe->dvb.frontend == p) {
331 dvb_unregister_frontend(fe->dvb.frontend);
333 if (fe->dvb.frontend)
335 dvb_frontend_detach(fe->dvb.frontend);
[all...]
/linux-master/drivers/media/dvb-frontends/
H A Dau8522.h13 #include <linux/dvb/frontend.h>
H A Disl6405.h14 #include <linux/dvb/frontend.h>
H A Ds5h1411.h13 #include <linux/dvb/frontend.h>
H A Dstv0288.h18 #include <linux/dvb/frontend.h>
H A Dtda10048.h13 #include <linux/dvb/frontend.h>
H A Daf9013.h14 #include <linux/dvb/frontend.h>
30 * @get_dvb_frontend: Get DVB frontend callback.
H A Dcxd2841er.h16 #include <linux/dvb/frontend.h>
H A Dlgs8gxx.h15 #include <linux/dvb/frontend.h>
H A Dlgs8gxx_priv.h19 struct dvb_frontend frontend; member in struct:lgs8gxx_state
H A Ds5h1432.h11 #include <linux/dvb/frontend.h>
H A Dstv0367.h15 #include <linux/dvb/frontend.h>
H A Dstv0900.h15 #include <linux/dvb/frontend.h>
H A Dcxd2820r.h12 #include <linux/dvb/frontend.h>
37 * @get_dvb_frontend: Get DVB frontend.
H A Dhelene.h15 #include <linux/dvb/frontend.h>
49 * @fe: frontend to be attached
62 * @fe: frontend to be attached
H A Dtda1002x.h15 #include <linux/dvb/frontend.h>
H A Dstb6100.h13 #include <linux/dvb/frontend.h>
76 struct dvb_frontend *frontend; member in struct:stb6100_state
H A Dtda1004x.h13 #include <linux/dvb/frontend.h>
101 struct dvb_frontend frontend; member in struct:tda1004x_state
/linux-master/drivers/media/platform/st/sti/c8sectpfe/
H A Dc8sectpfe-common.h14 #include <linux/dvb/frontend.h>
/linux-master/drivers/gpu/drm/sun4i/
H A DMakefile3 sun4i-frontend-y += sun4i_frontend.o
34 obj-$(CONFIG_DRM_SUN4I) += sun4i-frontend.o
/linux-master/drivers/media/test-drivers/vidtv/
H A Dvidtv_demod.c207 cnr2qual = vidtv_match_cnr_s(&state->frontend);
210 state->frontend.ops.tuner_ops.get_rf_strength) {
211 state->frontend.ops.tuner_ops.get_rf_strength(&state->frontend,
230 vidtv_demod_update_stats(&state->frontend);
426 memcpy(&state->frontend.ops,
432 state->frontend.demodulator_priv = state;
435 vidtv_clean_stats(&state->frontend);
/linux-master/drivers/media/firewire/
H A Dfiredtv-dvb.c128 (demux->dmx.frontend->source != DMX_MEMORY_FE))) {
191 fdtv->frontend.source = DMX_FRONTEND_0;
193 err = fdtv->demux.dmx.add_frontend(&fdtv->demux.dmx, &fdtv->frontend);
198 &fdtv->frontend);
222 fdtv->demux.dmx.remove_frontend(&fdtv->demux.dmx, &fdtv->frontend);
240 fdtv->demux.dmx.remove_frontend(&fdtv->demux.dmx, &fdtv->frontend);
/linux-master/drivers/media/usb/dvb-usb-v2/
H A Dzd1301.c132 struct dvb_frontend *frontend; local
161 frontend = zd1301_demod_get_dvb_frontend(pdev);
162 if (!adapter || !frontend) {
169 dev->mt2060_pdata.dvb_frontend = frontend;
187 adap->fe[0] = frontend;

Completed in 286 milliseconds

12345678910