Lines Matching refs:notify

215     sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
217 msg->setObject("source", new StreamingSource(notify, source));
246 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
250 source = new HTTPLiveSource(notify, httpService, url, headers);
253 notify, httpService, url, headers, mUIDValid, mUID);
259 notify, httpService, url, headers, mUIDValid, mUID, true);
262 new GenericSource(notify, mUIDValid, mUID);
282 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
285 new GenericSource(notify, mUIDValid, mUID);
300 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
302 sp<GenericSource> source = new GenericSource(notify, mUIDValid, mUID);
1359 sp<AMessage> notify = new AMessage(kWhatRendererNotify, this);
1361 notify->setInt32("generation", mRendererGeneration);
1362 mRenderer = new Renderer(mAudioSink, notify, flags);
1620 sp<AMessage> notify = new AMessage(kWhatAudioNotify, this);
1622 notify->setInt32("generation", mAudioDecoderGeneration);
1632 *decoder = new DecoderPassThrough(notify, mSource, mRenderer);
1636 *decoder = new Decoder(notify, mSource, mPID, mRenderer);
1639 sp<AMessage> notify = new AMessage(kWhatVideoNotify, this);
1641 notify->setInt32("generation", mVideoDecoderGeneration);
1644 notify, mSource, mPID, mRenderer, mSurface, mCCDecoder);
2062 // if audio-only, we can notify seek complete now,
2144 // notify duration first, so that it's definitely set when
2431 sp<AMessage> notify = dupNotify();
2432 notify->setInt32("what", kWhatFlagsChanged);
2433 notify->setInt32("flags", flags);
2434 notify->post();
2438 sp<AMessage> notify = dupNotify();
2439 notify->setInt32("what", kWhatVideoSizeChanged);
2440 notify->setMessage("format", format);
2441 notify->post();
2445 sp<AMessage> notify = dupNotify();
2446 notify->setInt32("what", kWhatPrepared);
2447 notify->setInt32("err", err);
2448 notify->post();
2452 sp<AMessage> notify = dupNotify();
2453 notify->setInt32("what", kWhatInstantiateSecureDecoders);
2454 notify->setMessage("reply", reply);
2455 notify->post();