/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 | 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...] |
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);
|
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));
|
/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...] |
/frameworks/av/include/camera/ |
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);
|
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;
|
ICameraRecordingProxyListener.h | 35 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType,
|
ICamera.h | 96 * @param msgType the message type an application selectively turn on/off 101 virtual status_t takePicture(int msgType) = 0;
|
IProCameraCallbacks.h | 39 virtual void notifyCallback(int32_t msgType,
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/ |
TextOutputCallbackTest.java | 37 * Test for TextOutputCallback(int msgType,String msg) ctor 46 * Test for TextOutputCallback(int msgType,String msg) ctor 57 * Test for TextOutputCallback(int msgType,String msg) ctor, 69 * Test for TextOutputCallback(int msgType,String msg) ctor,
|
/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...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapContent.java | 111 int msgType = TYPE_SMS; 356 int msgType = 0; 357 if (fi.msgType == FilterInfo.TYPE_SMS) { 358 msgType = c.getInt(c.getColumnIndex(Sms.TYPE)); 359 } else if (fi.msgType == FilterInfo.TYPE_MMS) { 360 msgType = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); 363 if (msgType == 2) { 376 if (fi.msgType == FilterInfo.TYPE_SMS) { 378 } else if (fi.msgType == FilterInfo.TYPE_MMS) { 396 if (fi.msgType == FilterInfo.TYPE_MMS) [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,
|
/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,
|
/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...] |
/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);
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 94 const char *msgtype = (type == RTM_NEWADDR) ? "RTM_NEWADDR" : "RTM_DELADDR"; local 102 SLOGE("Multiple IFA_ADDRESSes in %s, ignoring\n", msgtype); 111 RTA_PAYLOAD(rta), msgtype); 119 RTA_PAYLOAD(rta), msgtype); 131 SLOGE("Unknown ifindex %d in %s", ifaddr->ifa_index, msgtype); 148 SLOGE("Multiple IFA_CACHEINFOs in %s, ignoring\n", msgtype); 154 RTA_PAYLOAD(rta), sizeof(cacheinfo), msgtype); 167 SLOGE("No IFA_ADDRESS in %s\n", msgtype);
|
/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/services/camera/libcameraservice/api1/client2/ |
CaptureSequencer.h | 54 status_t startCapture(int msgType); 172 sp<Camera2Client> client, int msgType);
|
/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/telephony/src/java/com/android/internal/telephony/cdma/sms/ |
UserData.java | 134 public int msgType; 155 builder.append(", msgType=" + 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);
|