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

/frameworks/base/media/java/android/media/
H A DImageWriter.java854 private synchronized native void nativeClose(long nativeCtx); argument
856 private synchronized native void nativeDequeueInputImage(long nativeCtx, Image wi); argument
858 private synchronized native void nativeQueueInputImage(long nativeCtx, Image image, argument
861 private synchronized native int nativeAttachAndQueueImage(long nativeCtx, argument
865 private synchronized native void cancelImage(long nativeCtx, Image image); argument
/frameworks/base/media/jni/
H A Dandroid_media_ImageWriter.cpp254 jlong nativeCtx = reinterpret_cast<jlong>(ctx.get()); local
320 return nativeCtx;
323 static void ImageWriter_dequeueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { argument
325 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
363 static void ImageWriter_close(JNIEnv* env, jobject thiz, jlong nativeCtx) { argument
365 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
398 static void ImageWriter_cancelImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { argument
400 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
424 static void ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, argument
427 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx);
489 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 164 milliseconds