HomeSort by relevance Sort by last modified time
    Searched refs:msgType (Results 1 - 25 of 89) 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 231 status_t Camera::takePicture(int msgType)
233 ALOGV("takePicture: 0x%x", msgType);
236 return c->takePicture(msgType);
296 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
298 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
302 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
311 listener->postData(msgType, dataPtr, metadata);
316 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
327 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
338 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;
118 status_t takePicture(int msgType);
147 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
148 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
150 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,
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 54 virtual status_t takePicture(int msgType);
98 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
99 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
101 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
104 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
109 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
110 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
112 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
115 int32_t msgType,
158 void enableMsgType(int32_t msgType);
    [all...]
CameraClient.cpp 527 status_t CameraClient::takePicture(int msgType) {
528 LOG1("takePicture (pid %d): 0x%x", getCallingPid(), msgType);
534 if ((msgType & CAMERA_MSG_RAW_IMAGE) &&
535 (msgType & CAMERA_MSG_RAW_IMAGE_NOTIFY)) {
543 int picMsgType = msgType
660 void CameraClient::enableMsgType(int32_t msgType) {
661 android_atomic_or(msgType, &mMsgEnabled);
662 mHardware->enableMsgType(msgType);
665 void CameraClient::disableMsgType(int32_t msgType) {
666 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...]
  /device/lge/hammerhead/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 76 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
77 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
79 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
80 void postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata);
81 void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
88 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
105 * set whenever method addCallbackBuffer() with msgType =
193 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
206 * If the notification or msgType is CAMERA_MSG_RAW_IMAGE_NOTIFY, change it
210 if (msgType == CAMERA_MSG_RAW_IMAGE_NOTIFY)
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Rdi.cpp 138 int msgType = 0;
157 msgType |= CAMERA_MSG_PREVIEW_FRAME;
163 ALOGD("Message enabled = 0x%x", msgType);
164 if(mActive && msgType) {
165 mHalCamCtrl->mDataCb(msgType, data, 0, NULL, mHalCamCtrl->mCallbackCookie);
  /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);
  /external/deqp/execserver/
xsTestDriver.cpp 192 bool TestDriver::pollBuffer (ByteBuffer& messageBuffer, MessageType msgType)
204 numRead = msgType == MESSAGETYPE_PROCESS_LOG_DATA
217 Message::writeHeader(msgType, msgSize, &m_dataMsgTmpBuf[0], MESSAGE_HEADER_SIZE);
222 DBG_PRINT((" wrote %d bytes of %s data\n", msgSize, msgType == MESSAGETYPE_INFO ? "info" : "log"));
xsTestDriver.hpp 63 bool pollBuffer (ByteBuffer& messageBuffer, MessageType msgType);
  /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 49 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
50 virtual void postData(int32_t msgType, const sp<IMemory> &dataPtr,
54 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
73 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) {
74 UNUSED_UNLESS_VERBOSE(msgType);
77 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
80 void CameraSourceListener::postData(int32_t msgType, const sp<IMemory> &dataPtr,
83 msgType, dataPtr->pointer(), dataPtr->size());
87 source->dataCallback(msgType, dataPtr);
92 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& 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/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapEventReport.java 117 private BluetoothMapBmessage.Type parseMsgType(String msgType) throws IllegalArgumentException {
119 if (t.name().equals(msgType)) {
124 throw new IllegalArgumentException("Invalid value for msg_type: " + msgType);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.h 55 status_t startCapture(int msgType);
173 sp<Camera2Client> client, int msgType);

Completed in 317 milliseconds

1 2 3 4