• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pvrusb2/

Lines Matching defs:vp

357 static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
361 *vp = hdw->freqTable[hdw->freqProgSlot-1];
363 *vp = 0;
390 static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
392 *vp = cptr->hdw->freqProgSlot;
405 static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
408 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
430 static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
432 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
640 static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
644 *vp = 480;
646 *vp = 576;
651 static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
655 *vp = 75;
657 *vp = 17;
662 static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
664 *vp = cptr->hdw->input_val;
689 static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
699 *vp = TV_MAX_FREQ;
707 *vp = fv;
711 static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
721 *vp = TV_MIN_FREQ;
729 *vp = fv;
744 static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
757 *vp = c1.value;
817 static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
819 *vp = cptr->hdw->state_pipeline_req;
823 static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
825 *vp = cptr->hdw->master_state;
829 static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
832 *vp = PVR2_CVAL_HSM_FULL;
833 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
834 if (result) *vp = PVR2_CVAL_HSM_HIGH;
838 static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
840 *vp = cptr->hdw->std_mask_avail;
878 static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
880 *vp = cptr->hdw->std_mask_cur;
907 static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
911 *vp = hdw->tuner_signal_info.signal;
915 static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
934 *vp = val;
954 static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
956 *vp = cptr->hdw->std_enum_cur;
999 static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
1000 {*vp = cptr->hdw->vname##_val; return 0;} \