• Home
  • Raw
  • Download

Lines Matching refs:notify

39         const sp<AMessage> &notify)  in DecoderPassThrough()  argument
40 : Decoder(notify), in DecoderPassThrough()
41 mNotify(notify), in DecoderPassThrough()
93 sp<AMessage> notify = mNotify->dup(); in onConfigure() local
94 notify->setInt32("what", kWhatOutputFormatChanged); in onConfigure()
95 notify->setMessage("format", format); in onConfigure()
96 notify->post(); in onConfigure()
119 sp<AMessage> notify = mNotify->dup(); in requestABuffer() local
120 notify->setInt32("what", kWhatFillThisBuffer); in requestABuffer()
121 notify->setMessage("reply", reply); in requestABuffer()
122 notify->post(); in requestABuffer()
142 sp<AMessage> notify = mNotify->dup(); in onInputBufferFilled() local
143 notify->setInt32("what", kWhatEOS); in onInputBufferFilled()
144 notify->setInt32("err", ERROR_END_OF_STREAM); in onInputBufferFilled()
145 notify->post(); in onInputBufferFilled()
155 sp<AMessage> notify = mNotify->dup(); in onInputBufferFilled() local
156 notify->setInt32("what", kWhatDrainThisBuffer); in onInputBufferFilled()
157 notify->setBuffer("buffer", buffer); in onInputBufferFilled()
158 notify->setMessage("reply", reply); in onInputBufferFilled()
159 notify->post(); in onInputBufferFilled()
176 sp<AMessage> notify = mNotify->dup(); in onFlush() local
177 notify->setInt32("what", kWhatFlushCompleted); in onFlush()
178 notify->post(); in onFlush()
196 sp<AMessage> notify = mNotify->dup(); in onShutdown() local
197 notify->setInt32("what", kWhatShutdownCompleted); in onShutdown()
198 notify->post(); in onShutdown()