HomeSort by relevance Sort by last modified time
    Searched refs:jniEnv (Results 1 - 4 of 4) sorted by null

  /dalvik/vm/
Thread.h 239 /* the JNIEnv pointer associated with this thread */
240 JNIEnv* jniEnv;
329 bool dvmPrepMainForJni(JNIEnv* pEnv);
558 * Get/set the JNIEnv field.
560 INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
561 INLINE void dvmSetThreadJNIEnv(Thread* self, JNIEnv* env) { self->jniEnv = env;}
Thread.cpp 656 bool dvmPrepMainForJni(JNIEnv* pEnv)
670 dvmSetThreadJNIEnv(self, (JNIEnv*) pEnv);
    [all...]
Jni.cpp 127 Each Thread/JNIEnv points to an IndirectRefTable.
202 * If the caller has passed the wrong JNIEnv in, we're going to be accessing unsynchronized
209 explicit ScopedJniThreadState(JNIEnv* env) {
287 * Find the JNIEnv associated with the current thread.
715 // need the extra JNI arguments (the JNIEnv* and the jclass).
748 // be supplying a JNIEnv* or a jobject 'this', you're effectively
    [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp 114 static jobject getInputApplicationHandleObjLocalRef(JNIEnv* env,
123 static jobject getInputWindowHandleObjLocalRef(JNIEnv* env,
132 static void loadSystemIconAsSprite(JNIEnv* env, jobject contextObj, int32_t style,
169 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
171 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
173 void setInputWindows(JNIEnv* env, jobjectArray windowHandleObjArray);
174 void setFocusedApplication(JNIEnv* env, jobject applicationHandleObj);
254 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName);
256 static inline JNIEnv* jniEnv() {
    [all...]

Completed in 204 milliseconds