Home
last modified time | relevance | path

Searched refs:ext1 (Results 1 – 24 of 24) sorted by relevance

/hardware/google/graphics/common/libhwc2.1/libvirtualdisplay/
DExynosVirtualDisplay.cpp124 int ExynosVirtualDisplay::sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2) in sendWFDCommand() argument
126 ALOGI("sendWFDCommand: cmd(%d), ext1(%d), ext2(%d)", cmd, ext1, ext2); in sendWFDCommand()
133 ret = setWFDMode(ext1); in sendWFDCommand()
137 mMinTargetLuminance = (uint16_t)ext1; in sendWFDCommand()
143 mSinkDeviceType = ext1; in sendWFDCommand()
DExynosVirtualDisplay.h55 int sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2);
/hardware/libhardware/include_all/hardware/
Dcamera2.h302 int32_t ext1,
781 int32_t ext1,
Dcamera.h58 int32_t ext1,
/hardware/libhardware/include/hardware/
Dcamera2.h302 int32_t ext1,
781 int32_t ext1,
Dcamera.h58 int32_t ext1,
/hardware/interfaces/camera/device/1.0/
DICameraDeviceCallback.hal27 * @param ext1 The first parameter for the event, if needed.
30 notifyCallback(NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2);
/hardware/google/graphics/common/libhwc2.1/libhwcService/
DExynosHWCService.cpp85 int ExynosHWCService::sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2) in sendWFDCommand() argument
87 ALOGD_IF(HWC_SERVICE_DEBUG, "%s::cmd=%d, ext1=%d, ext2=%d", __func__, cmd, ext1, ext2); in sendWFDCommand()
92 return virtualdisplay->sendWFDCommand(cmd, ext1, ext2); in sendWFDCommand()
DIExynosHWC.h44 virtual int sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2) = 0;
DExynosHWCService.h45 virtual int sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2);
DIExynosHWC.cpp143 virtual int sendWFDCommand(int32_t cmd, int32_t ext1, int32_t ext2) in sendWFDCommand() argument
148 data.writeInt32(ext1); in sendWFDCommand()
623 int ext1 = data.readInt32(); in onTransact() local
625 int res = sendWFDCommand(cmd, ext1, ext2); in onTransact()
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
DQCamera3PostProc.h139 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCameraMuxer.h200 static int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
DQCamera2HWI.h94 int32_t ext1; member
143 int32_t ext1; // extended parameter member
427 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
DQCameraPostProc.h198 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
DQCameraPostProc.cpp860 int32_t ext1, in sendEvtNotify() argument
863 return m_parent->sendEvtNotify(msg_type, ext1, ext2); in sendEvtNotify()
2397 cbArg.ext1 = 0; in encodeData()
2976 cbArg.ext1 = 0; in processRawImageImpl()
DQCameraMuxer.cpp2257 int32_t QCameraMuxer::sendEvtNotify(int32_t msg_type, int32_t ext1, in sendEvtNotify() argument
2273 return pCam->hwi->sendEvtNotify(msg_type, ext1, ext2); in sendEvtNotify()
DQCamera2HWICallbacks.cpp1279 cbArg.ext1 = CAMERA_FRAME_DATA_FD; in secure_stream_cb_routine()
3396 cb->ext1, in cbNotifyRoutine()
DQCamera2HWI.cpp6589 int32_t ext1, in sendEvtNotify() argument
6596 cbArg.ext1 = ext1; in sendEvtNotify()
9025 cbArg.ext1 = 0; in playShutter()
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/
Dqcamera_test.h123 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
Dqcamera_test.cpp826 void CameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) in notify() argument
828 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2); in notify()
832 && (ext1 == CAMERA_FRAME_DATA_FD) in notify()
843 (ext1) ? "OK" : "FAIL"); in notify()
/hardware/interfaces/camera/device/1.0/default/
DCameraDevice_1_0.h191 static void sNotifyCb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user);
DCameraDevice.cpp418 void CameraDevice::sNotifyCb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user) { in sNotifyCb() argument
422 object->mDeviceCallback->notifyCallback((NotifyCallbackMsg) msg_type, ext1, ext2); in sNotifyCb()
/hardware/interfaces/camera/provider/2.4/vts/functional/
DVtsHalCameraProviderV2_4TargetTest.cpp738 int32_t ext1, int32_t ext2) override;
1127 NotifyCallbackMsg msgType, int32_t ext1 __unused, in notifyCallback()