Home
last modified time | relevance | path

Searched refs:msgType (Results 1 – 15 of 15) sorted by relevance

/hardware/qcom/camera/QCamera2/HAL/test/
Dqcamera_test.cpp165 void CameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) in notify() argument
167 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2); in notify()
169 if ( msgType & CAMERA_MSG_FOCUS ) { in notify()
174 if ( msgType & CAMERA_MSG_SHUTTER ) { in notify()
178 if ( msgType & CAMERA_MSG_ERROR) { in notify()
197 void CameraContext::postData(int32_t msgType, in postData() argument
201 printf("Data cb: %d\n", msgType); in postData()
203 if ( msgType & CAMERA_MSG_PREVIEW_FRAME ) { in postData()
207 if ( msgType & CAMERA_MSG_RAW_IMAGE ) { in postData()
211 if (msgType & CAMERA_MSG_POSTVIEW_FRAME) { in postData()
[all …]
Dqcamera_test.h87 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
88 virtual void postData(int32_t msgType,
93 int32_t msgType,
/hardware/ti/omap4xxx/test/CameraHal/
Dcamera_test.h69 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
70 virtual void postData(int32_t msgType,
74 … virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
Dcamera_test_menu.cpp653 void CameraHandler::notify(int32_t msgType, int32_t ext1, int32_t ext2) { in notify() argument
655 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2); in notify()
657 if ( msgType & CAMERA_MSG_FOCUS ) in notify()
660 if ( msgType & CAMERA_MSG_SHUTTER ) in notify()
663 if ( msgType & CAMERA_MSG_ERROR && (ext1 == 1)) in notify()
687 void CameraHandler::postData(int32_t msgType, in postData() argument
690 printf("Data cb: %d\n", msgType); in postData()
692 if ( msgType & CAMERA_MSG_PREVIEW_FRAME ) in postData()
695 if ( msgType & CAMERA_MSG_RAW_IMAGE ) { in postData()
700 if (msgType & CAMERA_MSG_POSTVIEW_FRAME) { in postData()
[all …]
/hardware/samsung_slsi/exynos5/libcamera/
DExynosCameraHWInterface.h78 virtual void enableMsgType(int32_t msgType);
79 virtual void disableMsgType(int32_t msgType);
80 virtual bool msgTypeEnabled(int32_t msgType);
DExynosCameraHWInterface.cpp291 void ExynosCameraHWInterface::enableMsgType(int32_t msgType) in enableMsgType() argument
294 __func__, msgType, m_msgEnabled); in enableMsgType()
295 m_msgEnabled |= msgType; in enableMsgType()
298 if ( msgType & CAMERA_MSG_PREVIEW_FRAME in enableMsgType()
314 void ExynosCameraHWInterface::disableMsgType(int32_t msgType) in disableMsgType() argument
317 __func__, msgType, m_msgEnabled); in disableMsgType()
318 m_msgEnabled &= ~msgType; in disableMsgType()
322 bool ExynosCameraHWInterface::msgTypeEnabled(int32_t msgType) in msgTypeEnabled() argument
324 return (m_msgEnabled & msgType); in msgTypeEnabled()
/hardware/ti/omap4xxx/camera/inc/
DCameraHal.h551 status_t enableMsgType(int32_t msgType);
552 status_t disableMsgType(int32_t msgType);
624 void copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType);
625 void copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType);
942 void enableMsgType(int32_t msgType);
947 void disableMsgType(int32_t msgType);
954 int msgTypeEnabled(int32_t msgType);
/hardware/ti/omap4xxx/camera/
DAppCallbackNotifier.cpp690 void AppCallbackNotifier::copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType) in copyAndSendPictureFrame() argument
719 mCameraHal->msgTypeEnabled(msgType)) { in copyAndSendPictureFrame()
720 mDataCb(msgType, picture, 0, NULL, mCallbackCookie); in copyAndSendPictureFrame()
726 void AppCallbackNotifier::copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType) in copyAndSendPreviewFrame() argument
790 mCameraHal->msgTypeEnabled(msgType) && in copyAndSendPreviewFrame()
792 mDataCb(msgType, mPreviewMemory, mPreviewBufCount, NULL, mCallbackCookie); in copyAndSendPreviewFrame()
1744 status_t AppCallbackNotifier::enableMsgType(int32_t msgType) in enableMsgType() argument
1746 if( msgType & (CAMERA_MSG_POSTVIEW_FRAME | CAMERA_MSG_PREVIEW_FRAME) ) { in enableMsgType()
1753 status_t AppCallbackNotifier::disableMsgType(int32_t msgType) in disableMsgType() argument
1755 if( msgType & (CAMERA_MSG_PREVIEW_FRAME | CAMERA_MSG_POSTVIEW_FRAME) ) { in disableMsgType()
DCameraHal.cpp123 void CameraHal::enableMsgType(int32_t msgType) in enableMsgType() argument
127 if ( ( msgType & CAMERA_MSG_SHUTTER ) && ( !mShutterEnabled ) ) in enableMsgType()
129 msgType &= ~CAMERA_MSG_SHUTTER; in enableMsgType()
134 msgType &= ~(CAMERA_MSG_FOCUS | CAMERA_MSG_FOCUS_MOVE); in enableMsgType()
138 mMsgEnabled |= msgType; in enableMsgType()
146 msgType &= ~CAMERA_MSG_PREVIEW_FRAME; in enableMsgType()
154 CAMHAL_LOGDB("Preview callback not enabled %x", msgType); in enableMsgType()
159 mAppCallbackNotifier->enableMsgType (msgType); in enableMsgType()
171 void CameraHal::disableMsgType(int32_t msgType) in disableMsgType() argument
177 mMsgEnabled &= ~msgType; in disableMsgType()
[all …]
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
DJFmTx.java124 void fmTxCmdSetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType, int msgLen, in fmTxCmdSetRdsTextRtMsg() argument
127 void fmTxCmdGetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType, int msgLen, in fmTxCmdGetRdsTextRtMsg() argument
460 private final int msgType; field in JFmTx.JFmRdsRtMsgType
462 private JFmRdsRtMsgType(int msgType) { in JFmRdsRtMsgType() argument
463 this.msgType = msgType; in JFmRdsRtMsgType()
467 return msgType; in getValue()
1253 public JFmTxStatus txSetRdsTextRtMsg(JFmRdsRtMsgType msgType, String msg, int msgLength) { in txSetRdsTextRtMsg() argument
1259 int status = nativeJFmTx_SetRdsTextRtMsg(txContext.getValue(), msgType.getValue(), msg, in txSetRdsTextRtMsg()
1479 private static native int nativeJFmTx_SetRdsTextRtMsg(long contextValue, int msgType, in nativeJFmTx_SetRdsTextRtMsg() argument
2433 public static void nativeCb_fmTxCmdSetRdsTextRtMsg(long contextValue, int status, int msgType, in nativeCb_fmTxCmdSetRdsTextRtMsg() argument
[all …]
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
DLCML_Types.h123 DSP_EventType msgType; member
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
DIFmRadio.aidl135 boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength); in txSetRdsTextRtMsg() argument
DFmRadio.java1747 public boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength) { in txSetRdsTextRtMsg() argument
1752 return mService.txSetRdsTextRtMsg(msgType, msg, msgLength); in txSetRdsTextRtMsg()
/hardware/ti/wpan/tools/FM/service/src/jni/
DJFmTxNative.cpp496 static int nativeJFmTx_SetRdsTextRtMsg(JNIEnv *env, jobject obj, jlong jContextValue, jint msgType,… in nativeJFmTx_SetRdsTextRtMsg() argument
/hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
DStubFmService.java4509 public boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength){ in txSetRdsTextRtMsg() argument
4516 JFmTx.JFmRdsRtMsgType.class, msgType); in txSetRdsTextRtMsg()
6472 int msgType,int msgLen,byte[]msg) { in fmTxCmdSetRdsTextRtMsg() argument
6481 int msgType,int msgLen,byte[]msg) { in fmTxCmdGetRdsTextRtMsg() argument
6484 Log.d(TAG, " fmTxCmdgetRdsTextRtMsg ( status: " + status + "msgType: " + msgType + in fmTxCmdGetRdsTextRtMsg()