• Home
  • Raw
  • Download

Lines Matching refs:onChoreographer

57     NDKChoreographerThread(Callback onChoreographer);
75 NDKChoreographerThread::NDKChoreographerThread(Callback onChoreographer) : in NDKChoreographerThread() argument
76 ChoreographerThread(onChoreographer) in NDKChoreographerThread()
186 reinterpret_cast<NDKChoreographerThread*>(data)->onChoreographer(); in scheduleNextFrameCallback()
194 JavaChoreographerThread(JavaVM *vm, Callback onChoreographer);
196 static void onChoreographer(jlong cookie);
197 void onChoreographer() override { ChoreographerThread::onChoreographer(); }; in onChoreographer() function in swappy::JavaChoreographerThread
211 Callback onChoreographer) : in JavaChoreographerThread() argument
212 ChoreographerThread(onChoreographer), in JavaChoreographerThread()
263 void JavaChoreographerThread::onChoreographer(jlong cookie) { in onChoreographer() function in swappy::JavaChoreographerThread
265 me->onChoreographer(); in onChoreographer()
273 JavaChoreographerThread::onChoreographer(cookie); in Java_com_google_swappy_ChoreographerCallback_nOnChoreographer()
280 NoChoreographerThread(Callback onChoreographer);
287 NoChoreographerThread::NoChoreographerThread(Callback onChoreographer) : in NoChoreographerThread() argument
288 ChoreographerThread(onChoreographer) {} in NoChoreographerThread()
297 ChoreographerThread::ChoreographerThread(Callback onChoreographer): in ChoreographerThread() argument
298 mCallback(onChoreographer) {} in ChoreographerThread()
316 void ChoreographerThread::onChoreographer() in onChoreographer() function in swappy::ChoreographerThread
377 Type type, JavaVM *vm, Callback onChoreographer) { in createChoreographerThread() argument
380 return std::make_unique<NoChoreographerThread>(onChoreographer); in createChoreographerThread()
385 return std::make_unique<NDKChoreographerThread>(onChoreographer); in createChoreographerThread()
390 return std::make_unique<JavaChoreographerThread>(vm, onChoreographer); in createChoreographerThread()
394 return std::make_unique<NoChoreographerThread>(onChoreographer); in createChoreographerThread()