Searched defs:dataPtr (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dsobeloperator.cpp42 void computeGradient(unsigned char* dataPtr, int width, int height, short* gxPtr, short* gyPtr) { argument
53 (*(dataPtr + curr + c + right) - *(dataPtr + curr + c + left)) * 2 +
54 *(dataPtr + above + c + right) - *(dataPtr + above + c + left) +
55 *(dataPtr + below + c + right) - *(dataPtr + below + c + left);
57 (*(dataPtr + c + below) - *(dataPtr + c + above)) * 2 +
58 *(dataPtr
[all...]
/frameworks/av/camera/
H A DCamera.cpp302 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, argument
311 listener->postData(msgType, dataPtr, metadata);
316 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
327 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
338 listener->postDataTimestamp(timestamp, msgType, dataPtr);
341 releaseRecordingFrame(dataPtr);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp50 virtual void postData(int32_t msgType, const sp<IMemory> &dataPtr,
54 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
80 void CameraSourceListener::postData(int32_t msgType, const sp<IMemory> &dataPtr, argument
83 msgType, dataPtr->pointer(), dataPtr->size());
87 source->dataCallback(msgType, dataPtr);
92 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
96 source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr);
912 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
913 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
91 postDataTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
911 dataCallbackTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp739 const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) {
751 if (dataPtr == 0 && metadata == NULL) {
759 client->handlePreviewData(msgType, dataPtr, metadata);
762 client->handlePostview(dataPtr);
765 client->handleRawPicture(dataPtr);
768 client->handleCompressedPicture(dataPtr);
771 client->handleGenericData(msgType, dataPtr, metadata);
777 int32_t msgType, const sp<IMemory>& dataPtr, void* user) {
790 if (dataPtr == 0) {
796 client->handleGenericDataTimestamp(timestamp, msgType, dataPtr);
738 dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) argument
776 dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
909 handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata) argument
918 handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp77 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
79 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
88 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
246 void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType) argument
251 if (dataPtr != NULL) {
254 sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size);
299 void JNICameraContext::postData(int32_t msgType, const sp<IMemory>& dataPtr, argument
326 copyAndPost(env, dataPtr, dataMsgType);
335 ALOGV("dataCallback(%d, %p)", dataMsgType, dataPtr.get());
336 copyAndPost(env, dataPtr, dataMsgTyp
346 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]

Completed in 168 milliseconds