Searched defs:needsDetach (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DSurfaceTexture.cpp155 static JNIEnv* getJNIEnv(bool* needsDetach);
168 JNIEnv* JNISurfaceTextureContext::getJNIEnv(bool* needsDetach) { argument
169 *needsDetach = false;
180 *needsDetach = true;
195 bool needsDetach = false; local
196 JNIEnv* env = getJNIEnv(&needsDetach);
203 if (needsDetach) {
210 bool needsDetach = false; local
211 JNIEnv* env = getJNIEnv(&needsDetach);
217 if (needsDetach) {
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_ImageWriter.cpp82 static JNIEnv* getJNIEnv(bool* needsDetach);
103 bool needsDetach = false; local
104 JNIEnv* env = getJNIEnv(&needsDetach);
111 if (needsDetach) {
118 JNIEnv* JNIImageWriterContext::getJNIEnv(bool* needsDetach) { argument
120 LOG_ALWAYS_FATAL_IF(needsDetach == NULL, "needsDetach is null!!!");
121 *needsDetach = false;
131 *needsDetach = true;
147 bool needsDetach local
[all...]
H A Dandroid_media_ImageReader.cpp115 static JNIEnv* getJNIEnv(bool* needsDetach);
143 JNIEnv* JNIImageReaderContext::getJNIEnv(bool* needsDetach) { argument
144 LOG_ALWAYS_FATAL_IF(needsDetach == NULL, "needsDetach is null!!!");
145 *needsDetach = false;
155 *needsDetach = true;
185 bool needsDetach = false; local
186 JNIEnv* env = getJNIEnv(&needsDetach);
193 if (needsDetach) {
211 bool needsDetach local
[all...]

Completed in 153 milliseconds