Searched refs:nativeCtx (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/media/jni/ |
D | android_media_ImageWriter.cpp | 402 jlong nativeCtx = reinterpret_cast<jlong>(ctx.get()); in ImageWriter_init() local 488 return nativeCtx; in ImageWriter_init() 491 static void ImageWriter_dequeueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_dequeueImage() argument 493 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_dequeueImage() 531 static void ImageWriter_close(JNIEnv* env, jobject thiz, jlong nativeCtx) { in ImageWriter_close() argument 533 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_close() 566 static void ImageWriter_cancelImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_cancelImage() argument 568 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_cancelImage() 592 static void ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, in ImageWriter_queueImage() argument 596 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_queueImage() [all …]
|
/frameworks/base/media/java/android/media/ |
D | ImageWriter.java | 890 private synchronized native void nativeClose(long nativeCtx); in nativeClose() argument 892 private synchronized native void nativeDequeueInputImage(long nativeCtx, Image wi); in nativeDequeueInputImage() argument 894 private synchronized native void nativeQueueInputImage(long nativeCtx, Image image, in nativeQueueInputImage() argument 898 private synchronized native int nativeAttachAndQueueImage(long nativeCtx, in nativeAttachAndQueueImage() argument 902 private synchronized native void cancelImage(long nativeCtx, Image image); in cancelImage() argument
|