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

1 2 3 4

  /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);
IProCameraCallbacks.cpp 50 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
55 data.writeInt32(msgType);
93 int32_t msgType = data.readInt32();
96 notifyCallback(msgType, ext1, ext2);
Camera.cpp 205 status_t Camera::takePicture(int msgType)
207 ALOGV("takePicture: 0x%x", msgType);
210 return c->takePicture(msgType);
270 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
272 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
276 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
285 listener->postData(msgType, dataPtr, metadata);
290 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
301 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
312 listener->postDataTimestamp(timestamp, msgType, dataPtr)
    [all...]
  /frameworks/av/include/camera/
ICameraClient.h 37 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
38 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
40 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;
114 status_t takePicture(int msgType);
143 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
144 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
146 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 39 virtual void notifyCallback(int32_t msgType,
ProCamera.h 47 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
57 virtual void onTriggerNotify(int32_t msgType, int32_t ext1, int32_t ext2)
248 virtual void notifyCallback(int32_t msgType,
CameraBase.h 93 virtual void notifyCallback(int32_t msgType, int32_t ext,
ICamera.h 96 * @param msgType the message type an application selectively turn on/off
101 virtual status_t takePicture(int msgType) = 0;
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 54 virtual status_t takePicture(int msgType);
97 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
98 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
100 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
103 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
108 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
109 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
111 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
114 int32_t msgType,
153 void enableMsgType(int32_t msgType);
    [all...]
CameraClient.cpp 516 status_t CameraClient::takePicture(int msgType) {
517 LOG1("takePicture (pid %d): 0x%x", getCallingPid(), msgType);
523 if ((msgType & CAMERA_MSG_RAW_IMAGE) &&
524 (msgType & CAMERA_MSG_RAW_IMAGE_NOTIFY)) {
532 int picMsgType = msgType
640 void CameraClient::enableMsgType(int32_t msgType) {
641 android_atomic_or(msgType, &mMsgEnabled);
642 mHardware->enableMsgType(msgType);
645 void CameraClient::disableMsgType(int32_t msgType) {
646 android_atomic_and(~msgType, &mMsgEnabled)
    [all...]
  /device/asus/flo/camera/QCamera2/HAL/test/
qcamera_test.h 87 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
88 virtual void postData(int32_t msgType,
93 int32_t msgType,
qcamera_test.cpp 159 * @msgType : type of callback
165 void CameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
167 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
169 if ( msgType & CAMERA_MSG_FOCUS ) {
174 if ( msgType & CAMERA_MSG_SHUTTER ) {
178 if ( msgType & CAMERA_MSG_ERROR) {
191 * @msgType : type of callback
197 void CameraContext::postData(int32_t msgType,
201 printf("Data cb: %d\n", msgType);
203 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.h 87 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
88 virtual void postData(int32_t msgType,
93 int32_t msgType,
qcamera_test.cpp 159 * @msgType : type of callback
165 void CameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
167 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
169 if ( msgType & CAMERA_MSG_FOCUS ) {
174 if ( msgType & CAMERA_MSG_SHUTTER ) {
178 if ( msgType & CAMERA_MSG_ERROR) {
191 * @msgType : type of callback
197 void CameraContext::postData(int32_t msgType,
201 printf("Data cb: %d\n", msgType);
203 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
    [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);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 110 int msgType = TYPE_SMS;
355 int msgType = 0;
356 if (fi.msgType == FilterInfo.TYPE_SMS) {
357 msgType = c.getInt(c.getColumnIndex(Sms.TYPE));
358 } else if (fi.msgType == FilterInfo.TYPE_MMS) {
359 msgType = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX));
362 if (msgType == 2) {
375 if (fi.msgType == FilterInfo.TYPE_SMS) {
377 } else if (fi.msgType == FilterInfo.TYPE_MMS) {
410 if (fi.msgType == FilterInfo.TYPE_MMS)
    [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,
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.h 54 status_t startCapture(int msgType);
172 sp<Camera2Client> client, int msgType);
  /frameworks/av/services/camera/libcameraservice/device1/
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...]

Completed in 490 milliseconds

1 2 3 4