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;
325 bool dvmPrepMainForJni(JNIEnv* pEnv);
554 * Get/set the JNIEnv field.
556 INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
557 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,
171 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
173 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
175 void setInputWindows(JNIEnv* env, jobjectArray windowHandleObjArray);
176 void setFocusedApplication(JNIEnv* env, jobject applicationHandleObj);
258 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName);
260 static inline JNIEnv* jniEnv() {
    [all...]

Completed in 238 milliseconds