Lines Matching refs:m_environment
51 :m_environment( environment ) in ContextClassLoaderScope()
61 LocalRef< jclass > threadClass( m_environment ); in ContextClassLoaderScope()
62 threadClass.set( m_environment.FindClass( "java/lang/Thread" ) ); in ContextClassLoaderScope()
66 jmethodID currentThreadMethod( m_environment.GetStaticMethodID( in ContextClassLoaderScope()
71 …m_currentThread.set( m_environment.CallStaticObjectMethod( threadClass.get(), currentThreadMethod … in ContextClassLoaderScope()
75 jmethodID getContextClassLoaderMethod( m_environment.GetMethodID( in ContextClassLoaderScope()
79 …m_oldContextClassLoader.set( m_environment.CallObjectMethod( m_currentThread.get(), getContextClas… in ContextClassLoaderScope()
80 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
84 m_setContextClassLoaderMethod = m_environment.GetMethodID( in ContextClassLoaderScope()
99 …m_environment.CallObjectMethod( m_currentThread.get(), m_setContextClassLoaderMethod, newClassLoad… in ContextClassLoaderScope()
100 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
118 …m_environment.CallObjectMethod( currentThread.get(), setContextClassLoaderMethod, m_oldContextClas… in pop()
121 m_environment.ExceptionClear(); in pop()