HomeSort by relevance Sort by last modified time
    Searched refs:msgType (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/av/camera/
ICameraClient.cpp 42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
47 data.writeInt32(msgType);
54 void dataCallback(int32_t msgType, const sp<IMemory>& imageData,
60 data.writeInt32(msgType);
70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
76 data.writeInt32(msgType);
93 int32_t msgType = data.readInt32();
96 notifyCallback(msgType, ext1, ext2);
102 int32_t msgType = data.readInt32();
111 dataCallback(msgType, imageData, metadata)
    [all...]
ICameraRecordingProxyListener.cpp 38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
44 data.writeInt32(msgType);
62 int32_t msgType = data.readInt32();
64 dataCallbackTimestamp(timestamp, msgType, imageData);
Camera.cpp 202 status_t Camera::takePicture(int msgType)
204 ALOGV("takePicture: 0x%x", msgType);
207 return c->takePicture(msgType);
259 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
261 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
265 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
274 listener->postData(msgType, dataPtr, metadata);
279 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
290 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
301 listener->postDataTimestamp(timestamp, msgType, dataPtr)
    [all...]
IProCameraCallbacks.cpp 53 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
58 data.writeInt32(msgType);
96 int32_t msgType = data.readInt32();
99 notifyCallback(msgType, ext1, ext2);
  /frameworks/av/include/camera/
ICameraClient.h 34 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
35 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
37 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
Camera.h 40 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
41 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
43 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
108 status_t takePicture(int msgType);
129 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
130 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
132 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
ICameraRecordingProxyListener.h 35 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType,
IProCameraCallbacks.h 36 virtual void notifyCallback(int32_t msgType,
ProCamera.h 46 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
56 virtual void onTriggerNotify(int32_t msgType, int32_t ext1, int32_t ext2)
241 virtual void notifyCallback(int32_t msgType,
CameraBase.h 92 virtual void notifyCallback(int32_t msgType, int32_t ext,
ICamera.h 86 * @param msgType the message type an application selectively turn on/off
91 virtual status_t takePicture(int msgType) = 0;
  /frameworks/av/services/camera/libcameraservice/
CameraClient.h 53 virtual status_t takePicture(int msgType);
96 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
97 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
99 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
102 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
107 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
108 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
110 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
113 int32_t msgType,
152 void enableMsgType(int32_t msgType);
    [all...]
CameraClient.cpp 515 status_t CameraClient::takePicture(int msgType) {
516 LOG1("takePicture (pid %d): 0x%x", getCallingPid(), msgType);
522 if ((msgType & CAMERA_MSG_RAW_IMAGE) &&
523 (msgType & CAMERA_MSG_RAW_IMAGE_NOTIFY)) {
531 int picMsgType = msgType
639 void CameraClient::enableMsgType(int32_t msgType) {
640 android_atomic_or(msgType, &mMsgEnabled);
641 mHardware->enableMsgType(msgType);
644 void CameraClient::disableMsgType(int32_t msgType) {
645 android_atomic_and(~msgType, &mMsgEnabled)
    [all...]
CameraHardwareInterface.h 32 typedef void (*notify_callback)(int32_t msgType,
37 typedef void (*data_callback)(int32_t msgType,
43 int32_t msgType,
145 * The following three functions all take a msgtype,
153 void enableMsgType(int32_t msgType)
157 mDevice->ops->enable_msg_type(mDevice, msgType);
170 void disableMsgType(int32_t msgType)
174 mDevice->ops->disable_msg_type(mDevice, msgType);
182 int msgTypeEnabled(int32_t msgType)
186 return mDevice->ops->msg_type_enabled(mDevice, msgType);
    [all...]
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 63 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
64 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
66 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
67 void postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata);
68 void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
75 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
91 * set whenever method addCallbackBuffer() with msgType =
171 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
184 * If the notification or msgType is CAMERA_MSG_RAW_IMAGE_NOTIFY, change it
188 if (msgType == CAMERA_MSG_RAW_IMAGE_NOTIFY)
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 69 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);
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...]
  /device/lge/mako/camera/
QualcommCamera.cpp 117 int32_t msgType;
128 void cam_notify_callback(int32_t msgType,
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,
223 qmem->msgType = msgType;
    [all...]
  /frameworks/av/media/libstagefright/
CameraSource.cpp 41 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
42 virtual void postData(int32_t msgType, const sp<IMemory> &dataPtr,
46 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
65 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) {
66 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
69 void CameraSourceListener::postData(int32_t msgType, const sp<IMemory> &dataPtr,
72 msgType, dataPtr->pointer(), dataPtr->size());
76 source->dataCallback(msgType, dataPtr);
81 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
85 source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr)
    [all...]
  /frameworks/av/include/media/stagefright/
CameraSource.h 128 virtual void dataCallbackTimestamp(int64_t timestampUs, int32_t msgType,
183 virtual void dataCallback(int32_t msgType, const sp<IMemory> &data) {}
185 virtual void dataCallbackTimestamp(int64_t timestampUs, int32_t msgType,
CameraSourceTimeLapse.h 136 virtual void dataCallbackTimestamp(int64_t timestampUs, int32_t msgType,
  /frameworks/av/services/camera/libcameraservice/camera2/
CaptureSequencer.h 54 status_t startCapture(int msgType);
171 sp<Camera2Client> client, int msgType);
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
IFmRadio.aidl 135 boolean txSetRdsTextRtMsg(int msgType, String msg, int msgLength);
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_Types.h 123 DSP_EventType msgType;
  /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);

Completed in 325 milliseconds

1 2 3