• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/pvrusb2/

Lines Matching defs:vp

275 static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
279 *vp = hdw->freqTable[hdw->freqProgSlot-1];
281 *vp = 0;
308 static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
310 *vp = cptr->hdw->freqProgSlot;
323 static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
326 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
348 static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
350 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
370 static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
374 *vp = 480;
376 *vp = 576;
381 static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
385 *vp = 75;
387 *vp = 17;
392 static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
394 *vp = cptr->hdw->input_val;
431 static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
441 *vp = TV_MAX_FREQ;
449 *vp = fv;
453 static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
463 *vp = TV_MIN_FREQ;
471 *vp = fv;
485 static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
498 *vp = c1.value;
545 static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
547 *vp = cptr->hdw->flag_streaming_enabled;
551 static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
554 *vp = PVR2_CVAL_HSM_FULL;
555 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
556 if (result) *vp = PVR2_CVAL_HSM_HIGH;
560 static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
562 *vp = cptr->hdw->std_mask_avail;
600 static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
602 *vp = cptr->hdw->std_mask_cur;
629 static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
633 *vp = hdw->tuner_signal_info.signal;
637 static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
656 *vp = val;
660 static int ctrl_subsys_get(struct pvr2_ctrl *cptr,int *vp)
662 *vp = cptr->hdw->subsys_enabled_mask;
672 static int ctrl_subsys_stream_get(struct pvr2_ctrl *cptr,int *vp)
674 *vp = cptr->hdw->subsys_stream_mask;
699 static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
701 *vp = cptr->hdw->std_enum_cur;
744 static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
745 {*vp = cptr->hdw->vname##_val; return 0;} \