Home
last modified time | relevance | path

Searched refs:notifyComplete (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoderBase.cpp106 void NuPlayer::DecoderBase::signalResume(bool notifyComplete) { in signalResume() argument
108 msg->setInt32("notifyComplete", notifyComplete); in signalResume()
197 int32_t notifyComplete; in onMessageReceived() local
198 CHECK(msg->findInt32("notifyComplete", &notifyComplete)); in onMessageReceived()
200 onResume(notifyComplete); in onMessageReceived()
DNuPlayerDecoderPassThrough.h42 virtual void onResume(bool notifyComplete);
44 virtual void onShutdown(bool notifyComplete);
76 void doFlush(bool notifyComplete);
DNuPlayerDecoderBase.h47 void signalResume(bool notifyComplete);
74 virtual void onResume(bool notifyComplete) = 0;
76 virtual void onShutdown(bool notifyComplete) = 0;
DNuPlayerDecoderPassThrough.cpp361 void NuPlayer::DecoderPassThrough::onResume(bool notifyComplete) { in onResume() argument
366 if (notifyComplete) { in onResume()
373 void NuPlayer::DecoderPassThrough::doFlush(bool notifyComplete) { in doFlush() argument
381 mRenderer->flush(true /* audio */, notifyComplete); in doFlush()
400 void NuPlayer::DecoderPassThrough::onShutdown(bool notifyComplete) { in onShutdown() argument
404 if (notifyComplete) { in onShutdown()
DNuPlayerDecoder.h48 virtual void onResume(bool notifyComplete);
50 virtual void onShutdown(bool notifyComplete);
121 void doFlush(bool notifyComplete);
DNuPlayerDecoder.cpp424 void NuPlayer::Decoder::onResume(bool notifyComplete) { in onResume() argument
427 if (notifyComplete) { in onResume()
433 void NuPlayer::Decoder::doFlush(bool notifyComplete) { in doFlush() argument
439 mRenderer->flush(mIsAudio, notifyComplete); in doFlush()
476 void NuPlayer::Decoder::onShutdown(bool notifyComplete) { in onShutdown() argument
506 if (notifyComplete) { in onShutdown()
DNuPlayerRenderer.cpp275 void NuPlayer::Renderer::flush(bool audio, bool notifyComplete) { in flush() argument
279 mNotifyCompleteAudio |= notifyComplete; in flush()
284 mNotifyCompleteVideo |= notifyComplete; in flush()
1458 int32_t audio, notifyComplete; in onFlush() local
1464 notifyComplete = mNotifyCompleteAudio; in onFlush()
1468 notifyComplete = mNotifyCompleteVideo; in onFlush()
1542 if (notifyComplete) { in onFlush()
DNuPlayerRenderer.h59 void flush(bool audio, bool notifyComplete);
/frameworks/base/core/java/android/app/
DExitTransitionCoordinator.java89 notifyComplete(); in onReceiveResult()
306 notifyComplete(); in fadeOutBackground()
423 notifyComplete(); in onTransitionsComplete()
426 protected void notifyComplete() { in notifyComplete() method in ExitTransitionCoordinator