Searched refs:nativeCtx (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
H A DImageWriter.java791 private synchronized native void nativeClose(long nativeCtx); argument
793 private synchronized native void nativeDequeueInputImage(long nativeCtx, Image wi); argument
795 private synchronized native void nativeQueueInputImage(long nativeCtx, Image image, argument
798 private synchronized native int nativeAttachAndQueueImage(long nativeCtx, argument
802 private synchronized native void cancelImage(long nativeCtx, Image image); argument
/frameworks/base/media/jni/
H A Dandroid_media_ImageWriter.cpp264 jlong nativeCtx = reinterpret_cast<jlong>(ctx.get()); local
324 return nativeCtx;
327 static void ImageWriter_dequeueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { argument
329 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
367 static void ImageWriter_close(JNIEnv* env, jobject thiz, jlong nativeCtx) { argument
369 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
402 static void ImageWriter_cancelImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { argument
404 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
430 static void ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, argument
433 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
495 ImageWriter_attachAndQueueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jlong nativeBuffer, jint imageFormat, jlong timestampNs, jint left, jint top, jint right, jint bottom) argument
[all...]

Completed in 97 milliseconds