Lines Matching refs:vm
194 JavaChoreographerThread(JavaVM *vm, Callback onChoreographer);
210 JavaChoreographerThread::JavaChoreographerThread(JavaVM *vm, in JavaChoreographerThread() argument
213 mJVM(vm) in JavaChoreographerThread()
331 int ChoreographerThread::getSDKVersion(JavaVM *vm) in getSDKVersion() argument
334 vm->AttachCurrentThread(&env, nullptr); in getSDKVersion()
361 bool ChoreographerThread::isChoreographerCallbackClassLoaded(JavaVM *vm) in isChoreographerCallbackClassLoaded() argument
364 vm->AttachCurrentThread(&env, nullptr); in isChoreographerCallbackClassLoaded()
377 Type type, JavaVM *vm, Callback onChoreographer) { in createChoreographerThread() argument
383 if (getSDKVersion(vm) >= 24) { in createChoreographerThread()
388 if (isChoreographerCallbackClassLoaded(vm)){ in createChoreographerThread()
390 return std::make_unique<JavaChoreographerThread>(vm, onChoreographer); in createChoreographerThread()