Searched refs:active_filter (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/drivers/media/common/ |
D | cx2341x.c | 1461 int active_filter; in cx2341x_s_ctrl() local 1471 active_filter = hdl->video_spatial_filter_mode->val != in cx2341x_s_ctrl() 1473 v4l2_ctrl_activate(hdl->video_spatial_filter, active_filter); in cx2341x_s_ctrl() 1474 v4l2_ctrl_activate(hdl->video_luma_spatial_filter_type, active_filter); in cx2341x_s_ctrl() 1475 v4l2_ctrl_activate(hdl->video_chroma_spatial_filter_type, active_filter); in cx2341x_s_ctrl() 1476 active_filter = hdl->video_temporal_filter_mode->val != in cx2341x_s_ctrl() 1478 v4l2_ctrl_activate(hdl->video_temporal_filter, active_filter); in cx2341x_s_ctrl() 1479 active_filter = hdl->video_median_filter_type->val != in cx2341x_s_ctrl() 1481 v4l2_ctrl_activate(hdl->video_luma_median_filter_bottom, active_filter); in cx2341x_s_ctrl() 1482 v4l2_ctrl_activate(hdl->video_luma_median_filter_top, active_filter); in cx2341x_s_ctrl() [all …]
|
/linux-4.4.14/drivers/net/ppp/ |
D | ppp_generic.c | 147 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() 1264 if (!(ppp->active_filter && in ppp_send_frame() 1265 BPF_PROG_RUN(ppp->active_filter, skb) == 0)) in ppp_send_frame() 1884 if (ppp->pass_filter || ppp->active_filter) { in ppp_receive_nonmp_frame() 1898 if (!(ppp->active_filter && in ppp_receive_nonmp_frame() [all …]
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_ppp.c | 332 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() 1185 if (!(is->active_filter in isdn_ppp_push_higher() 1186 && BPF_PROG_RUN(is->active_filter, skb) == 0)) { in isdn_ppp_push_higher() [all …]
|
/linux-4.4.14/include/linux/ |
D | isdn_ppp.h | 184 struct bpf_prog *active_filter; /* filter for pkts to reset idle */ member
|