HomeSort by relevance Sort by last modified time
    Searched refs:msgType (Results 26 - 50 of 76) sorted by null

12 3 4

  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 653 void CameraHandler::notify(int32_t msgType, int32_t ext1, int32_t ext2) {
655 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
657 if ( msgType & CAMERA_MSG_FOCUS )
660 if ( msgType & CAMERA_MSG_SHUTTER )
663 if ( msgType & CAMERA_MSG_ERROR && (ext1 == 1))
687 void CameraHandler::postData(int32_t msgType,
690 printf("Data cb: %d\n", msgType);
692 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
695 if ( msgType & CAMERA_MSG_RAW_IMAGE ) {
700 if (msgType & CAMERA_MSG_POSTVIEW_FRAME)
    [all...]
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
IFmRadio.aidl 135 boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength);
  /frameworks/av/include/media/stagefright/
CameraSourceTimeLapse.h 138 virtual void dataCallbackTimestamp(int64_t timestampUs, int32_t msgType,
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_Types.h 123 DSP_EventType msgType;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 277 int msgType = (0xFF & pdu[index++]);
278 if (msgType != 0) {
309 log("Received WAP PDU. Type = " + msgType + ", originator = " + address
327 * ex: MSGTYPE-TotalSegments-CurrentSegment
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCameraHWInterface.h 78 virtual void enableMsgType(int32_t msgType);
79 virtual void disableMsgType(int32_t msgType);
80 virtual bool msgTypeEnabled(int32_t msgType);
  /frameworks/av/camera/
ICamera.cpp 207 status_t takePicture(int msgType)
209 ALOGV("takePicture: 0x%x", msgType);
212 data.writeInt32(msgType);
376 int msgType = data.readInt32();
377 reply->writeInt32(takePicture(msgType));
CameraBase.cpp 170 void CameraBase<TCam, TCamTraits>::notifyCallback(int32_t msgType,
180 listener->notify(msgType, ext1, ext2);
ProCamera.cpp 60 void ProCamera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
62 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java 151 String msgType = null;
154 msgType = icicle.getString("message_type");
157 if (msgType == null) {
158 msgType = intent.getStringExtra("message_type");
161 return msgType;
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 26 typedef void (*jni_progress_callback_fct)(void* cookie, M4OSA_UInt32 msgType, void *argc);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockService.java 258 int msgType = msg.what;
266 if(DEBUG) Log.d(TAG, "processMessage: " + msgType + " state: " + state + " device = "
271 switch (msgType) {
295 if (mDialog == null && mPendingDevice == null && msgType != MSG_TYPE_UNDOCKED_TEMPORARY
449 int msgType;
452 msgType = MSG_TYPE_UNDOCKED_TEMPORARY;
468 msgType = MSG_TYPE_SHOW_UI;
470 msgType = MSG_TYPE_DOCKED;
477 return mServiceHandler.obtainMessage(msgType, state, 0, device);
    [all...]
  /frameworks/av/media/libstagefright/
CameraSourceTimeLapse.cpp 299 void CameraSourceTimeLapse::dataCallbackTimestamp(int64_t timestampUs, int32_t msgType,
303 CameraSource::dataCallbackTimestamp(timestampUs, msgType, data);
  /frameworks/av/media/libstagefright/omx/
SimpleSoftOMXComponent.cpp 336 uint32_t msgType = msg->what();
337 ALOGV("msgType = %d", msgType);
338 switch (msgType) {
358 size_t portIndex = (kWhatEmptyThisBuffer == msgType)?
370 CHECK((msgType == kWhatEmptyThisBuffer
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 690 void AppCallbackNotifier::copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType)
719 mCameraHal->msgTypeEnabled(msgType)) {
720 mDataCb(msgType, picture, 0, NULL, mCallbackCookie);
726 void AppCallbackNotifier::copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType)
790 mCameraHal->msgTypeEnabled(msgType) &&
792 mDataCb(msgType, mPreviewMemory, mPreviewBufCount, NULL, mCallbackCookie);
    [all...]
CameraHal.cpp 119 @param[in] msgtype Bitmask of the messages to enable (defined in include/ui/Camera.h)
123 void CameraHal::enableMsgType(int32_t msgType)
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);
167 @param[in] msgtype Bitmask of the messages to disable (defined in include/ui/Camera.h
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 551 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);
934 * The following three functions all take a msgtype,
942 void enableMsgType(int32_t msgType);
947 void disableMsgType(int32_t msgType);
954 int msgTypeEnabled(int32_t msgType);
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera2.h 260 void sendNotification(int32_t msgType,
EmulatedCamera2.cpp 379 void EmulatedCamera2::sendNotification(int32_t msgType,
387 notifyCb(msgType, ext1, ext2, ext3, mNotifyUserPtr);
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.h 76 virtual status_t takePicture(int msgType);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.cpp 63 status_t CaptureSequencer::startCapture(int msgType) {
72 mMsgType = msgType;
709 sp<Camera2Client> client, int msgType) {
714 && (msgType & CAMERA_MSG_SHUTTER)) {
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 602 int msgType = headers.getOctet(PduHeaders.MESSAGE_TYPE);
607 if ((msgType == PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF)
608 || (msgType == PduHeaders.MESSAGE_TYPE_SEND_REQ)) {
618 switch (msgType) {
660 "Unsupported PDU type: " + Integer.toHexString(msgType));
664 "Unrecognized PDU type: " + Integer.toHexString(msgType));
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java 117 int msgType = cursor.getInt(cursor.getColumnIndexOrThrow(
131 (msgType == PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND);
TransactionService.java 248 int msgType = cursor.getInt(columnIndexOfMsgType);
249 int transactionType = getTransactionType(msgType);
251 Log.v(TAG, "onNewIntent: msgType=" + msgType + " transactionType=" +
349 private int getTransactionType(int msgType) {
350 switch (msgType) {
358 Log.w(TAG, "Unrecognized MESSAGE_TYPE: " + msgType);
    [all...]

Completed in 1160 milliseconds

12 3 4