/hardware/interfaces/camera/device/1.0/ |
D | ICameraDeviceCallback.hal | 23 * The meaning of each parameter is defined by the value of msgType, and 26 * @param msgType The type of the event. 30 notifyCallback(NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2); 59 * @param msgType The kind of image buffer data this call represents. 65 dataCallback(DataCallbackMsg msgType, MemoryId data, uint32_t bufferIndex, 71 * @param msgType The kind of image buffer data this call represents. 79 dataCallbackTimestamp(DataCallbackMsg msgType, MemoryId data, uint32_t bufferIndex, 85 * @param msgType The kind of image buffer data this call represents. 94 handleCallbackTimestamp(DataCallbackMsg msgType, handle frameData, MemoryId data, 105 * @param msgType The kind of image buffer data this call represents. [all …]
|
D | ICameraDevice.hal | 194 * @param msgType The bitfield of messages to enable. 196 enableMsgType(FrameCallbackFlags msgType); 208 * @param msgType The bitfield of messages to disable. 210 disableMsgType(FrameCallbackFlags msgType); 217 * @param msgType The bitfield of messages to query. 220 msgTypeEnabled(FrameCallbackFlags msgType) generates (bool enabled);
|
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/ |
D | qcamera_test.h | 123 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2); 124 virtual void postData(int32_t msgType, 129 int32_t msgType, 132 int32_t msgType,
|
D | qcamera_test.cpp | 826 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() 830 if (( msgType & CAMERA_MSG_PREVIEW_FRAME) in notify() 841 if ( msgType & CAMERA_MSG_FOCUS ) { in notify() 846 if ( msgType & CAMERA_MSG_SHUTTER ) { in notify() 850 if ( msgType & CAMERA_MSG_ERROR) { in notify() 869 void CameraContext::postData(int32_t msgType, in postData() argument 882 printf("Data cb: %d\n", msgType); in postData() 884 if ( msgType & CAMERA_MSG_PREVIEW_FRAME ) { in postData() 888 if ( msgType & CAMERA_MSG_RAW_IMAGE ) { in postData() [all …]
|
/hardware/ril/libril/ |
D | sap_service.cpp | 535 void *sapDecodeMessage(MsgId msgId, MsgType msgType, uint8_t *payloadPtr, size_t payloadLen) { in sapDecodeMessage() argument 556 if (msgType == MsgType_RESPONSE) { in sapDecodeMessage() 766 void processResponse(MsgHeader *rsp, RilSapSocket *sapSocket, MsgType msgType) { in processResponse() argument 771 void *messagePtr = sapDecodeMessage(msgId, msgType, data, dataLen); in processResponse() 776 msgId, msgType); in processResponse() 782 msgId, msgType); in processResponse() 788 msgId, msgType); in processResponse() 805 if (msgType == MsgType_RESPONSE) { in processResponse()
|
/hardware/interfaces/camera/device/1.0/default/ |
D | CameraDevice_1_0.h | 85 Return<void> enableMsgType(uint32_t msgType) override; 86 Return<void> disableMsgType(uint32_t msgType) override; 87 Return<bool> msgTypeEnabled(uint32_t msgType) override;
|
D | CameraDevice.cpp | 695 Return<void> CameraDevice::enableMsgType(uint32_t msgType) { in enableMsgType() argument 703 mDevice->ops->enable_msg_type(mDevice, msgType); in enableMsgType() 708 Return<void> CameraDevice::disableMsgType(uint32_t msgType) { in disableMsgType() argument 716 mDevice->ops->disable_msg_type(mDevice, msgType); in disableMsgType() 721 Return<bool> CameraDevice::msgTypeEnabled(uint32_t msgType) { in msgTypeEnabled() argument 729 return mDevice->ops->msg_type_enabled(mDevice, msgType); in msgTypeEnabled()
|
/hardware/interfaces/contexthub/1.0/default/ |
D | Contexthub.cpp | 153 .message_type = msg.msgType, in sendMessageToHub() 263 uint32_t msgType, in handleOsMessage() argument 269 switch(msgType) { in handleOsMessage() 385 msg.msgType = rxMsg->message_type; in contextHubCb()
|
D | Contexthub.h | 97 uint32_t msgType,
|
/hardware/interfaces/camera/provider/2.4/vts/functional/ |
D | VtsHalCameraProviderV2_4TargetTest.cpp | 674 Return<void> notifyCallback(NotifyCallbackMsg msgType, 682 Return<void> dataCallback(DataCallbackMsg msgType, 686 Return<void> dataCallbackTimestamp(DataCallbackMsg msgType, 690 Return<void> handleCallbackTimestamp(DataCallbackMsg msgType, 694 Return<void> handleCallbackTimestampBatch(DataCallbackMsg msgType, 714 void enableMsgType(unsigned int msgType, 716 void disableMsgType(unsigned int msgType, 941 NotifyCallbackMsg msgType, int32_t ext1 __unused, in notifyCallback() argument 944 mParent->mNotifyMessage = msgType; in notifyCallback() 983 DataCallbackMsg msgType __unused, uint32_t data __unused, in dataCallback() [all …]
|
/hardware/qcom/camera/msm8998/QCamera2/HAL/wrapper/ |
D | QualcommCamera.cpp | 88 int32_t msgType; member
|
/hardware/interfaces/contexthub/1.0/vts/functional/ |
D | VtsHalContexthubV1_0TargetTest.cpp | 331 msg.msgType = 1; in TEST_P()
|
/hardware/qcom/camera/msm8998/usbcamcore/src/ |
D | QualcommUsbCamera.cpp | 2021 int msgType = 0; in previewloop() local 2208 msgType |= CAMERA_MSG_PREVIEW_FRAME; in previewloop() 2243 camHal->data_cb(msgType, data, 0,metadata, camHal->cb_ctxt); in previewloop() 2456 int msgType = 0; in takePictureThread() local
|
/hardware/interfaces/contexthub/1.0/ |
D | types.hal | 157 uint32_t msgType; // Identifier for message
|