Home | History | Annotate | Download | only in jni

Lines Matching refs:dataPtr

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);
75 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
224 void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType)
229 if (dataPtr != NULL) {
232 sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size);
277 void JNICameraContext::postData(int32_t msgType, const sp<IMemory>& dataPtr,
304 copyAndPost(env, dataPtr, dataMsgType);
313 ALOGV("dataCallback(%d, %p)", dataMsgType, dataPtr.get());
314 copyAndPost(env, dataPtr, dataMsgType);
324 void JNICameraContext::postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
327 postData(msgType, dataPtr, NULL);