Searched refs:nativeCtx (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/media/jni/ |
D | android_media_ImageWriter.cpp | 377 jlong nativeCtx = reinterpret_cast<jlong>(ctx.get()); in ImageWriter_init() local 463 return nativeCtx; in ImageWriter_init() 466 static void ImageWriter_dequeueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_dequeueImage() argument 468 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_dequeueImage() 506 static void ImageWriter_close(JNIEnv* env, jobject thiz, jlong nativeCtx) { in ImageWriter_close() argument 508 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_close() 541 static void ImageWriter_cancelImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_cancelImage() argument 543 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_cancelImage() 567 static void ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, in ImageWriter_queueImage() argument 571 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
|