Home
last modified time | relevance | path

Searched refs:active_filter (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/drivers/media/common/
Dcx2341x.c1457 int active_filter; in cx2341x_s_ctrl() local
1467 active_filter = hdl->video_spatial_filter_mode->val != in cx2341x_s_ctrl()
1469 v4l2_ctrl_activate(hdl->video_spatial_filter, active_filter); in cx2341x_s_ctrl()
1470 v4l2_ctrl_activate(hdl->video_luma_spatial_filter_type, active_filter); in cx2341x_s_ctrl()
1471 v4l2_ctrl_activate(hdl->video_chroma_spatial_filter_type, active_filter); in cx2341x_s_ctrl()
1472 active_filter = hdl->video_temporal_filter_mode->val != in cx2341x_s_ctrl()
1474 v4l2_ctrl_activate(hdl->video_temporal_filter, active_filter); in cx2341x_s_ctrl()
1475 active_filter = hdl->video_median_filter_type->val != in cx2341x_s_ctrl()
1477 v4l2_ctrl_activate(hdl->video_luma_median_filter_bottom, active_filter); in cx2341x_s_ctrl()
1478 v4l2_ctrl_activate(hdl->video_luma_median_filter_top, active_filter); in cx2341x_s_ctrl()
[all …]
/Linux-v4.19/drivers/net/ppp/
Dppp_generic.c151 struct bpf_prog *active_filter; /* filter for pkts to reset idle */ member
791 struct bpf_prog *active_filter = NULL; in ppp_ioctl() local
799 err = bpf_prog_create(&active_filter, &fprog); in ppp_ioctl()
802 if (ppp->active_filter) in ppp_ioctl()
803 bpf_prog_destroy(ppp->active_filter); in ppp_ioctl()
804 ppp->active_filter = active_filter; in ppp_ioctl()
1046 ppp->active_filter = NULL; in ppp_dev_configure()
1529 if (!(ppp->active_filter && in ppp_send_frame()
1530 BPF_PROG_RUN(ppp->active_filter, skb) == 0)) in ppp_send_frame()
2157 if (ppp->pass_filter || ppp->active_filter) { in ppp_receive_nonmp_frame()
[all …]
/Linux-v4.19/drivers/isdn/i4l/
Disdn_ppp.c332 is->active_filter = NULL; in isdn_ppp_open()
392 if (is->active_filter) { in isdn_ppp_release()
393 bpf_prog_destroy(is->active_filter); in isdn_ppp_release()
394 is->active_filter = NULL; in isdn_ppp_release()
669 if (is->active_filter) { in isdn_ppp_ioctl()
670 bpf_prog_destroy(is->active_filter); in isdn_ppp_ioctl()
671 is->active_filter = NULL; in isdn_ppp_ioctl()
674 err = bpf_prog_create(&is->active_filter, &fprog); in isdn_ppp_ioctl()
1195 if (!(is->active_filter in isdn_ppp_push_higher()
1196 && BPF_PROG_RUN(is->active_filter, skb) == 0)) { in isdn_ppp_push_higher()
[all …]
/Linux-v4.19/include/linux/
Disdn_ppp.h184 struct bpf_prog *active_filter; /* filter for pkts to reset idle */ member