Home
last modified time | relevance | path

Searched refs:ctrl (Results 1 – 25 of 46) sorted by relevance

12

/hardware/qcom/wlan/qcwcn/wifi_hal/wifi_hal_ctrl/
Dwifi_hal_ctrl.c41 struct wifihal_ctrl *ctrl; in wifihal_ctrl_open2() local
57 ctrl = malloc(sizeof(*ctrl)); in wifihal_ctrl_open2()
58 if (ctrl == NULL) { in wifihal_ctrl_open2()
62 memset(ctrl, 0, sizeof(*ctrl)); in wifihal_ctrl_open2()
63 ctrl->s = socket(PF_UNIX, SOCK_DGRAM, 0); in wifihal_ctrl_open2()
64 if (ctrl->s < 0) { in wifihal_ctrl_open2()
65 free(ctrl); in wifihal_ctrl_open2()
69 ctrl->local.sun_family = AF_UNIX; in wifihal_ctrl_open2()
73 res = strlcpy(ctrl->local.sun_path, cli_path, in wifihal_ctrl_open2()
74 sizeof(ctrl->local.sun_path)); in wifihal_ctrl_open2()
[all …]
Dwifi_hal_ctrl.h186 void wifihal_ctrl_close(struct wifihal_ctrl *ctrl);
217 int wifihal_ctrl_request(struct wifihal_ctrl *ctrl, const char *cmd, size_t cmd_len,
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/inc/
Dmm_qcamera_commands.h41 int tuneserver_initialize_tuningp(void * ctrl, int client_socket_id,
43 int tuneserver_deinitialize_tuningp(void * ctrl, int client_socket_id,
45 int tuneserver_process_get_list_cmd(void * ctrl, void *recv_cmd,
47 int tuneserver_process_misc_cmd(void * ctrl, void *recv_cmd,
49 int tuneserver_process_get_params_cmd(void * ctrl, void *recv_cmd,
51 int tuneserver_process_set_params_cmd(void * ctrl, void *recv_cmd,
54 int tuneserver_initialize_prevtuningp(void * ctrl,
57 int tuneserver_deinitialize_prevtuningp(void * ctrl,
59 int tuneserver_preview_getinfo(void * ctrl,
61 int tuneserver_preview_getchunksize(void * ctrl,
[all …]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
Dmm_qcamera_commands.c37 int tuneserver_initialize_prevtuningp(void * ctrl, in tuneserver_initialize_prevtuningp() argument
42 mm_camera_lib_handle *lib_handle = (mm_camera_lib_handle *) ctrl; in tuneserver_initialize_prevtuningp()
64 int tuneserver_deinitialize_prevtuningp(void * ctrl, in tuneserver_deinitialize_prevtuningp() argument
68 tuningserver_t *tctrl = (tuningserver_t *) ctrl; in tuneserver_deinitialize_prevtuningp()
78 int tuneserver_preview_getinfo(void * ctrl, char **send_buf, uint32_t *send_len) in tuneserver_preview_getinfo() argument
81 tuningserver_t *tctrl = (tuningserver_t *) ctrl; in tuneserver_preview_getinfo()
90 int tuneserver_preview_getchunksize(void * ctrl, in tuneserver_preview_getchunksize() argument
94 tuningserver_t *tctrl = (tuningserver_t *) ctrl; in tuneserver_preview_getchunksize()
104 int tuneserver_preview_getframe(void * ctrl, in tuneserver_preview_getframe() argument
108 tuningserver_t *tctrl = (tuningserver_t *) ctrl; in tuneserver_preview_getframe()
[all …]
Dmm_qcamera_main_menu.c1498 struct v4l2_control ctrl; in get_ctrl_value()
1502 ctrl.id = V4L2_CID_AUTO_WHITE_BALANCE; in get_ctrl_value()
1506 ctrl.id = V4L2_CID_WHITE_BALANCE_TEMPERATURE; in get_ctrl_value()
1510 ctrl.id = V4L2_CID_BRIGHTNESS; in get_ctrl_value()
1514 ctrl.id = V4L2_CID_EXPOSURE; in get_ctrl_value()
1518 ctrl.id = V4L2_CID_CONTRAST; in get_ctrl_value()
1522 ctrl.id = V4L2_CID_SATURATION; in get_ctrl_value()
1525 ctrl.id = V4L2_CID_SHARPNESS; in get_ctrl_value()
/hardware/qcom/display/msm8960/liboverlay/pipes/
DoverlayGenPipe.cpp56 if(!mCtrlData.ctrl.init(mFbNum)) { in init()
75 if(!mCtrlData.ctrl.close()) { in close()
99 mCtrlData.ctrl.setSource(args); in setSource()
103 mCtrlData.ctrl.setCrop(d); in setCrop()
111 mCtrlData.ctrl.setTransform(orient); in setTransform()
115 mCtrlData.ctrl.setPosition(d); in setPosition()
120 return mCtrlData.ctrl.setVisualParams(metadata); in setVisualParams()
128 ovutils::Dim src(mCtrlData.ctrl.getCrop()); in commit()
129 ovutils::Dim dst(mCtrlData.ctrl.getPosition()); in commit()
152 mCtrlData.ctrl.updateSrcFormat(mRot->getDstFormat()); in commit()
[all …]
/hardware/interfaces/automotive/can/1.0/tools/libcanhaltools/
Dlibcanhaltools.cpp42 bool isSupported(sp<ICanController> ctrl, ICanController::InterfaceType iftype) { in isSupported() argument
44 if (!ctrl->getSupportedInterfaceTypes(hidl_utils::fill(&supported)).isOk()) return false; in isSupported()
67 auto ctrl = ICanController::getService(service); in configureIface() local
68 if (ctrl == nullptr) { in configureIface()
73 if (!libcanhaltools::isSupported(ctrl, iftype)) continue; in configureIface()
75 const auto up_result = ctrl->upInterface(can_config); in configureIface()
/hardware/interfaces/automotive/can/1.0/tools/
Dcanhalctrl.cpp50 auto ctrl = ICanController::getService(service); in up() local
51 if (ctrl == nullptr) { in up()
56 if (!libcanhaltools::isSupported(ctrl, type)) continue; in up()
86 const auto upresult = ctrl->upInterface(config); in up()
100 auto ctrl = ICanController::getService(service); in down() local
101 if (ctrl == nullptr) continue; in down()
103 if (ctrl->downInterface(busName)) return 0; in down()
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp3119 struct v4l2_ext_control ctrl[4]; in venc_enable_initial_qp() local
3122 ctrl[0].id = V4L2_CID_MPEG_VIDC_VIDEO_I_FRAME_QP; in venc_enable_initial_qp()
3123 ctrl[0].value = initqp->nQpI; in venc_enable_initial_qp()
3124 ctrl[1].id = V4L2_CID_MPEG_VIDC_VIDEO_P_FRAME_QP; in venc_enable_initial_qp()
3125 ctrl[1].value = initqp->nQpP; in venc_enable_initial_qp()
3126 ctrl[2].id = V4L2_CID_MPEG_VIDC_VIDEO_B_FRAME_QP; in venc_enable_initial_qp()
3127 ctrl[2].value = initqp->nQpB; in venc_enable_initial_qp()
3128 ctrl[3].id = V4L2_CID_MPEG_VIDC_VIDEO_ENABLE_INITIAL_QP; in venc_enable_initial_qp()
3129 ctrl[3].value = initqp->bEnableInitQp; in venc_enable_initial_qp()
3133 controls.controls = ctrl; in venc_enable_initial_qp()
[all …]
/hardware/interfaces/automotive/can/1.0/tools/libcanhaltools/include/libcanhaltools/
Dlibcanhaltools.h38 bool isSupported(sp<V1_0::ICanController> ctrl, V1_0::ICanController::InterfaceType iftype);
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp4195 struct v4l2_ext_control ctrl[4]; in venc_enable_initial_qp() local
4198 ctrl[0].id = V4L2_CID_MPEG_VIDC_VIDEO_I_FRAME_QP; in venc_enable_initial_qp()
4199 ctrl[0].value = initqp->nQpI; in venc_enable_initial_qp()
4200 ctrl[1].id = V4L2_CID_MPEG_VIDC_VIDEO_P_FRAME_QP; in venc_enable_initial_qp()
4201 ctrl[1].value = initqp->nQpP; in venc_enable_initial_qp()
4202 ctrl[2].id = V4L2_CID_MPEG_VIDC_VIDEO_B_FRAME_QP; in venc_enable_initial_qp()
4203 ctrl[2].value = initqp->nQpB; in venc_enable_initial_qp()
4204 ctrl[3].id = V4L2_CID_MPEG_VIDC_VIDEO_ENABLE_INITIAL_QP; in venc_enable_initial_qp()
4205 ctrl[3].value = initqp->bEnableInitQp; in venc_enable_initial_qp()
4209 controls.controls = ctrl; in venc_enable_initial_qp()
[all …]
/hardware/qcom/wlan/qcwcn/wifi_hal/
DAndroid.mk23 LOCAL_MODULE := libwifi-hal-ctrl
154 LOCAL_SHARED_LIBRARIES += libwifi-hal-ctrl
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCameraStateMachine.h192 QCameraStateMachine(QCamera2HardwareInterface *ctrl);
/hardware/knowles/athletico/sound_trigger_hal/tests/
Ddump_debug_info.c430 dump.id, dump.ctrl, in dump_tunnel()
517 dump.id, dump.ctrl, in dump_stream()
/hardware/qcom/msm8x27/original-kernel-headers/linux/
Dmsm_kgsl.h186 unsigned int ctrl; member
/hardware/qcom/msm8x27/kernel-headers/linux/
Dmsm_kgsl.h182 unsigned int ctrl; member
/hardware/qcom/msm8x84/original-kernel-headers/linux/
Dmsm_kgsl.h275 unsigned int ctrl; member
/hardware/qcom/msm8960/original-kernel-headers/linux/
Dmsm_kgsl.h242 unsigned int ctrl; member
/hardware/qcom/msm8x84/kernel-headers/linux/
Dmsm_kgsl.h256 unsigned int ctrl; member
/hardware/qcom/msm8994/kernel-headers/linux/
Dmsm_kgsl.h271 unsigned int ctrl; member
/hardware/qcom/msm8x26/kernel-headers/linux/
Dmsm_kgsl.h270 unsigned int ctrl; member
/hardware/qcom/msm8994/original-kernel-headers/linux/
Dmsm_kgsl.h318 unsigned int ctrl; member
/hardware/qcom/msm8x26/original-kernel-headers/linux/
Dmsm_kgsl.h317 unsigned int ctrl; member
/hardware/qcom/msm8996/original-kernel-headers/linux/
Dmsm_kgsl.h389 unsigned int ctrl; member
/hardware/qcom/msm8996/kernel-headers/linux/
Dmsm_kgsl.h319 unsigned int ctrl; member

12