Lines Matching refs:notify

57     Track(const sp<AMessage> &notify,
63 Track(const sp<AMessage> &notify, const sp<AMessage> &format);
128 const sp<AMessage> &notify,
133 : mNotify(notify),
144 const sp<AMessage> &notify, const sp<AMessage> &format)
145 : mNotify(notify),
249 sp<AMessage> notify = mNotify->dup();
250 notify->setInt32("what", kWhatStopped);
251 notify->post();
350 const sp<AMessage> &notify,
356 mNotify(notify),
387 sp<AMessage> notify = new AMessage(kWhatMediaSenderNotify, this);
388 mMediaSender = new MediaSender(mNetSession, notify);
455 sp<AMessage> notify = mNotify->dup();
456 notify->setInt32("what", kWhatSessionEstablished);
457 notify->post();
601 sp<AMessage> notify = mNotify->dup();
602 notify->setInt32("what", kWhatSessionDestroyed);
603 notify->post();
791 sp<AMessage> notify = new AMessage(kWhatTrackNotify, this);
792 notify->setSize("trackIndex", trackIndex);
794 sp<Track> track = new Track(notify, format);
941 sp<AMessage> notify;
969 notify = new AMessage(kWhatConverterNotify, this);
970 notify->setSize("trackIndex", trackIndex);
972 sp<Converter> converter = new Converter(notify, codecLooper, format);
984 notify = new AMessage(Converter::kWhatMediaPullerNotify, converter);
985 notify->setSize("trackIndex", trackIndex);
987 sp<MediaPuller> puller = new MediaPuller(source, notify);
994 notify = new AMessage(kWhatTrackNotify, this);
995 notify->setSize("trackIndex", trackIndex);
998 notify, pullLooper, codecLooper, puller, converter);
1107 sp<AMessage> notify = mNotify->dup();
1108 notify->setInt32("what", kWhatSessionDead);
1109 notify->post();