Searched refs:msgType (Results 1 - 25 of 25) sorted by relevance

/hardware/ti/omap4xxx/test/CameraHal/
H A 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);
H A Dcamera_test_menu.cpp651 void CameraHandler::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
653 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
655 if ( msgType & CAMERA_MSG_FOCUS )
658 if ( msgType & CAMERA_MSG_SHUTTER )
661 if ( msgType & CAMERA_MSG_ERROR && (ext1 == 1))
685 void CameraHandler::postData(int32_t msgType, argument
688 printf("Data cb: %d\n", msgType);
690 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
693 if ( msgType & CAMERA_MSG_RAW_IMAGE ) {
698 if (msgType
714 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
/hardware/qcom/camera/
H A DQualcommCamera.cpp117 int32_t msgType; member in struct:android::__anon701
128 void cam_notify_callback(int32_t msgType, argument
141 notify_cb(msgType, ext1, ext2, user_data);
166 void native_send_data_callback(int32_t msgType,
187 qmem->msgType = msgType;
190 data_cb(msgType, framebuffer, counter, NULL, user);
203 static void cam_data_callback(int32_t msgType, argument
223 qmem->msgType = msgType;
235 cam_data_callback_timestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
[all...]
H A DQCameraHWI_Preview.cpp863 int msgType = 0; local
1029 msgType |= CAMERA_MSG_PREVIEW_FRAME;
1060 if(msgType) {
1063 pcb(msgType, data, 0, metadata, mHalCamCtrl->mCallbackCookie);
1128 int msgType = 0; local
1185 msgType |= CAMERA_MSG_PREVIEW_FRAME;
1210 msgType |= CAMERA_MSG_PREVIEW_METADATA;
1215 if(msgType) {
1218 pcb(msgType, data, 0, metadata, mHalCamCtrl->mCallbackCookie);
H A DQualcommCameraHardware.h108 virtual void enableMsgType(int32_t msgType);
109 virtual void disableMsgType(int32_t msgType);
110 virtual bool msgTypeEnabled(int32_t msgType);
H A DQCameraHWI_Preview_7x27A.cpp518 int msgType = 0; local
613 msgType |= CAMERA_MSG_PREVIEW_FRAME;
618 if(msgType) {
620 pcb(msgType, data, 0, metadata, mHalCamCtrl->mCallbackCookie);
H A DQCameraHWI.cpp436 void QCameraHardwareInterface::enableMsgType(int32_t msgType) argument
438 ALOGV("enableMsgType: E, msgType =0x%x", msgType);
440 mMsgEnabled |= msgType;
441 ALOGV("enableMsgType: X, msgType =0x%x, mMsgEnabled=0x%x", msgType, mMsgEnabled);
444 void QCameraHardwareInterface::disableMsgType(int32_t msgType) argument
448 mMsgEnabled &= ~msgType;
449 ALOGV("disableMsgType: X, msgType =0x%x, mMsgEnabled=0x%x", msgType, mMsgEnable
452 msgTypeEnabled(int32_t msgType) argument
[all...]
H A DQualcommCamera2.cpp124 int32_t msgType; member in struct:android::__anon703
H A DQualcommCameraHardware.cpp391 extern void native_send_data_callback(int32_t msgType,
9696 void QualcommCameraHardware::enableMsgType(int32_t msgType) argument
9699 mMsgEnabled |= msgType;
9708 void QualcommCameraHardware::disableMsgType(int32_t msgType) argument
9717 mMsgEnabled &= ~msgType;
9720 bool QualcommCameraHardware::msgTypeEnabled(int32_t msgType) argument
9722 return (mMsgEnabled & msgType);
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
H A DIFmRadio.aidl135 boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength);
H A DFmRadio.java1747 public boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength) { argument
1752 return mService.txSetRdsTextRtMsg(msgType, msg, msgLength);
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
H A DLCML_Types.h123 DSP_EventType msgType; member in struct:NOTIFICATION_OBJ
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCameraHWInterface.h78 virtual void enableMsgType(int32_t msgType);
79 virtual void disableMsgType(int32_t msgType);
80 virtual bool msgTypeEnabled(int32_t msgType);
H A DExynosCameraHWInterface.cpp291 void ExynosCameraHWInterface::enableMsgType(int32_t msgType) argument
293 ALOGV("DEBUG(%s):msgType = 0x%x, m_msgEnabled before = 0x%x",
294 __func__, msgType, m_msgEnabled);
295 m_msgEnabled |= msgType;
298 if ( msgType & CAMERA_MSG_PREVIEW_FRAME
314 void ExynosCameraHWInterface::disableMsgType(int32_t msgType) argument
316 ALOGV("DEBUG(%s):msgType = 0x%x, m_msgEnabled before = 0x%x",
317 __func__, msgType, m_msgEnabled);
318 m_msgEnabled &= ~msgType;
322 bool ExynosCameraHWInterface::msgTypeEnabled(int32_t msgType) argument
[all...]
/hardware/ti/omap4xxx/camera/
H A DAppCallbackNotifier.cpp690 void AppCallbackNotifier::copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType) argument
719 mCameraHal->msgTypeEnabled(msgType)) {
720 mDataCb(msgType, picture, 0, NULL, mCallbackCookie);
726 void AppCallbackNotifier::copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType) argument
790 mCameraHal->msgTypeEnabled(msgType) &&
792 mDataCb(msgType, mPreviewMemory, mPreviewBufCount, NULL, mCallbackCookie);
1744 status_t AppCallbackNotifier::enableMsgType(int32_t msgType) argument
1746 if( msgType & (CAMERA_MSG_POSTVIEW_FRAME | CAMERA_MSG_PREVIEW_FRAME) ) {
1753 status_t AppCallbackNotifier::disableMsgType(int32_t msgType) argument
1755 if( msgType
[all...]
H A DCameraHal.cpp123 void CameraHal::enableMsgType(int32_t msgType) argument
127 if ( ( msgType & CAMERA_MSG_SHUTTER ) && ( !mShutterEnabled ) )
129 msgType &= ~CAMERA_MSG_SHUTTER;
134 msgType &= ~(CAMERA_MSG_FOCUS | CAMERA_MSG_FOCUS_MOVE);
138 mMsgEnabled |= msgType;
146 msgType &= ~CAMERA_MSG_PREVIEW_FRAME;
154 CAMHAL_LOGDB("Preview callback not enabled %x", msgType);
159 mAppCallbackNotifier->enableMsgType (msgType);
171 void CameraHal::disableMsgType(int32_t msgType) argument
177 mMsgEnabled &= ~msgType;
202 msgTypeEnabled(int32_t msgType) argument
[all...]
/hardware/ti/omap4xxx/camera/inc/
H A 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/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
H A DJFmTx.java124 void fmTxCmdSetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType, int msgLen, argument
127 void fmTxCmdGetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType, int msgLen, argument
460 private final int msgType; field in class:JFmTx.JFmRdsRtMsgType
462 private JFmRdsRtMsgType(int msgType) { argument
463 this.msgType = msgType;
467 return msgType;
1253 public JFmTxStatus txSetRdsTextRtMsg(JFmRdsRtMsgType msgType, String msg, int msgLength) { argument
1259 int status = nativeJFmTx_SetRdsTextRtMsg(txContext.getValue(), msgType.getValue(), msg,
1479 private static native int nativeJFmTx_SetRdsTextRtMsg(long contextValue, int msgType, argument
2433 nativeCb_fmTxCmdSetRdsTextRtMsg(long contextValue, int status, int msgType, int msgLen, byte[] msg) argument
2457 nativeCb_fmTxCmdGetRdsTextRtMsg(long contextValue, int status, int msgType, int msgLen, byte[] msg) argument
[all...]
/hardware/qcom/camera/QCamera/HAL/core/src/
H A DQCameraHWI.cpp413 void QCameraHardwareInterface::enableMsgType(int32_t msgType) argument
415 LOGI("enableMsgType: E, msgType =0x%x", msgType);
417 mMsgEnabled |= msgType;
418 LOGI("enableMsgType: X, msgType =0x%x, mMsgEnabled=0x%x", msgType, mMsgEnabled);
421 void QCameraHardwareInterface::disableMsgType(int32_t msgType) argument
425 mMsgEnabled &= ~msgType;
426 LOGI("disableMsgType: X, msgType =0x%x, mMsgEnabled=0x%x", msgType, mMsgEnable
429 msgTypeEnabled(int32_t msgType) argument
[all...]
H A DQCameraHWI_Preview.cpp818 int msgType = 0; local
974 msgType |= CAMERA_MSG_PREVIEW_FRAME;
1000 if(msgType) {
1003 pcb(msgType, data, 0, metadata, mHalCamCtrl->mCallbackCookie);
1065 int msgType = 0; local
1121 msgType |= CAMERA_MSG_PREVIEW_FRAME;
1146 msgType |= CAMERA_MSG_PREVIEW_METADATA;
1151 if(msgType) {
1154 pcb(msgType, data, 0, metadata, mHalCamCtrl->mCallbackCookie);
/hardware/qcom/camera/QCamera/HAL/wrapper/
H A DQualcommCamera.cpp124 int32_t msgType; member in struct:android::__anon357
/hardware/qcom/camera/QCamera/HAL2/core/src/
H A DQCameraStream_Preview.cpp250 int msgType = 0; local
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/
H A DmlmeParser.c103 dot11MgmtSubType_e msgType; local
127 status = mlmeParser_getFrameType(pHandle, (TI_UINT16 *)&pMgmtFrame->hdr.fc, &msgType);
141 pHandle->tempFrameInfo.frame.subType = msgType;
197 switch (msgType)
/hardware/ti/wpan/tools/FM/service/src/jni/
H A DJFmTxNative.cpp496 static int nativeJFmTx_SetRdsTextRtMsg(JNIEnv *env, jobject obj, jlong jContextValue, jint msgType,jstring msg,jint length) argument
526 // FmTxStatus status =FM_TX_SetRdsTextRtMsg(fmTxContext,(FmcRdsRtMsgType)msgType,(const FMC_U8 *)rtMsg,(FMC_UINT)length);
/hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
H A DStubFmService.java4509 public boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength){ argument
4516 JFmTx.JFmRdsRtMsgType.class, msgType);
6472 int msgType,int msgLen,byte[]msg) {
6481 int msgType,int msgLen,byte[]msg) {
6484 Log.d(TAG, " fmTxCmdgetRdsTextRtMsg ( status: " + status + "msgType: " + msgType +
6471 fmTxCmdSetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType,int msgLen,byte[]msg) argument
6480 fmTxCmdGetRdsTextRtMsg(JFmTx context, JFmTxStatus status, int msgType,int msgLen,byte[]msg) argument

Completed in 401 milliseconds