Home
last modified time | relevance | path

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

/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoderBase.cpp103 void NuPlayer::DecoderBase::signalResume(bool notifyComplete) { in signalResume() argument
105 msg->setInt32("notifyComplete", notifyComplete); in signalResume()
180 int32_t notifyComplete; in onMessageReceived() local
181 CHECK(msg->findInt32("notifyComplete", &notifyComplete)); in onMessageReceived()
183 onResume(notifyComplete); in onMessageReceived()
DNuPlayerDecoderPassThrough.h41 virtual void onResume(bool notifyComplete);
43 virtual void onShutdown(bool notifyComplete);
75 void doFlush(bool notifyComplete);
DNuPlayerDecoderBase.h47 void signalResume(bool notifyComplete);
79 virtual void onResume(bool notifyComplete) = 0;
81 virtual void onShutdown(bool notifyComplete) = 0;
DNuPlayerDecoderPassThrough.cpp362 void NuPlayer::DecoderPassThrough::onResume(bool notifyComplete) { in onResume() argument
367 if (notifyComplete) { in onResume()
374 void NuPlayer::DecoderPassThrough::doFlush(bool notifyComplete) { in doFlush() argument
382 mRenderer->flush(true /* audio */, notifyComplete); in doFlush()
401 void NuPlayer::DecoderPassThrough::onShutdown(bool notifyComplete) { in onShutdown() argument
405 if (notifyComplete) { in onShutdown()
DNuPlayerDecoder.h52 virtual void onResume(bool notifyComplete);
54 virtual void onShutdown(bool notifyComplete);
130 void doFlush(bool notifyComplete);
DNuPlayerDecoder.cpp457 void NuPlayer::Decoder::onResume(bool notifyComplete) { in onResume() argument
460 if (notifyComplete) { in onResume()
472 void NuPlayer::Decoder::doFlush(bool notifyComplete) { in doFlush() argument
478 mRenderer->flush(mIsAudio, notifyComplete); in doFlush()
515 void NuPlayer::Decoder::onShutdown(bool notifyComplete) { in onShutdown() argument
544 if (notifyComplete) { in onShutdown()
DNuPlayerRenderer.cpp287 void NuPlayer::Renderer::flush(bool audio, bool notifyComplete) { in flush() argument
291 mNotifyCompleteAudio |= notifyComplete; in flush()
296 mNotifyCompleteVideo |= notifyComplete; in flush()
1584 int32_t audio, notifyComplete; in onFlush() local
1590 notifyComplete = mNotifyCompleteAudio; in onFlush()
1594 notifyComplete = mNotifyCompleteVideo; in onFlush()
1668 if (notifyComplete) { in onFlush()
DNuPlayerRenderer.h59 void flush(bool audio, bool notifyComplete);
/frameworks/base/core/java/android/app/
DExitTransitionCoordinator.java91 notifyComplete(); in onReceiveResult()
306 notifyComplete(); in fadeOutBackground()
428 notifyComplete(); in onTransitionsComplete()
431 protected void notifyComplete() { in notifyComplete() method in ExitTransitionCoordinator