Searched refs:nativeCtx (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/media/jni/ |
D | android_media_ImageWriter.cpp | 254 jlong nativeCtx = reinterpret_cast<jlong>(ctx.get()); in ImageWriter_init() local 320 return nativeCtx; in ImageWriter_init() 323 static void ImageWriter_dequeueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_dequeueImage() argument 325 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_dequeueImage() 363 static void ImageWriter_close(JNIEnv* env, jobject thiz, jlong nativeCtx) { in ImageWriter_close() argument 365 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_close() 398 static void ImageWriter_cancelImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image) { in ImageWriter_cancelImage() argument 400 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_cancelImage() 424 static void ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, in ImageWriter_queueImage() argument 427 JNIImageWriterContext* const ctx = reinterpret_cast<JNIImageWriterContext *>(nativeCtx); in ImageWriter_queueImage() [all …]
|
/frameworks/base/media/java/android/media/ |
D | ImageWriter.java | 854 private synchronized native void nativeClose(long nativeCtx); in nativeClose() argument 856 private synchronized native void nativeDequeueInputImage(long nativeCtx, Image wi); in nativeDequeueInputImage() argument 858 private synchronized native void nativeQueueInputImage(long nativeCtx, Image image, in nativeQueueInputImage() argument 861 private synchronized native int nativeAttachAndQueueImage(long nativeCtx, in nativeAttachAndQueueImage() argument 865 private synchronized native void cancelImage(long nativeCtx, Image image); in cancelImage() argument
|