Searched refs:notify (Results 1 - 25 of 185) sorted by relevance

12345678

/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp33 const sp<MediaSource> &source, const sp<AMessage> &notify)
35 mNotify(notify),
69 void MediaPuller::stopAsync(const sp<AMessage> &notify) { argument
71 msg->setMessage("notify", notify);
123 sp<AMessage> notify; local
124 CHECK(msg->findMessage("notify", &notify));
125 notify->post();
158 sp<AMessage> notify local
32 MediaPuller( const sp<MediaSource> &source, const sp<AMessage> &notify) argument
182 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DMediaPuller.h33 MediaPuller(const sp<MediaSource> &source, const sp<AMessage> &notify);
36 void stopAsync(const sp<AMessage> &notify);
H A DConverter.cpp41 const sp<AMessage> &notify,
46 mNotify(notify),
281 sp<AMessage> notify = mNotify->dup(); local
282 notify->setInt32("what", kWhatError);
283 notify->setInt32("err", err);
284 notify->post();
464 sp<AMessage> notify = new AMessage(kWhatEncoderActivity, id()); local
465 notify->setInt64("whenUs", ALooper::GetNowUs());
466 mEncoder->requestActivityNotification(notify);
515 sp<AMessage> notify local
40 Converter( const sp<AMessage> &notify, const sp<ALooper> &codecLooper, const sp<AMessage> &format, bool usePCMAudio) argument
563 sp<AMessage> notify = mNotify->dup(); local
666 sp<AMessage> notify = mNotify->dup(); local
683 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DPlaybackSession.cpp56 Track(const sp<AMessage> &notify,
62 Track(const sp<AMessage> &notify, const sp<AMessage> &format);
127 const sp<AMessage> &notify,
132 : mNotify(notify),
143 const sp<AMessage> &notify, const sp<AMessage> &format)
144 : mNotify(notify),
248 sp<AMessage> notify = mNotify->dup(); local
249 notify->setInt32("what", kWhatStopped);
250 notify->post();
348 const sp<AMessage> &notify,
126 Track( const sp<AMessage> &notify, const sp<ALooper> &pullLooper, const sp<ALooper> &codecLooper, const sp<MediaPuller> &mediaPuller, const sp<Converter> &converter) argument
142 Track( const sp<AMessage> &notify, const sp<AMessage> &format) argument
346 PlaybackSession( const sp<ANetworkSession> &netSession, const sp<AMessage> &notify, const in_addr &interfaceAddr, const sp<IHDCP> &hdcp, const char *path) argument
382 sp<AMessage> notify = new AMessage(kWhatMediaSenderNotify, id()); local
448 sp<AMessage> notify = mNotify->dup(); local
592 sp<AMessage> notify = mNotify->dup(); local
698 sp<AMessage> notify = new AMessage(kWhatTrackNotify, id()); local
835 sp<AMessage> notify; local
974 sp<AMessage> notify = mNotify->dup(); local
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.h41 const char *host, unsigned port, const sp<AMessage> &notify,
46 const sp<AMessage> &notify, int32_t *sessionID);
49 unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID);
55 const sp<AMessage> &notify,
64 const sp<AMessage> &notify, int32_t *sessionID);
71 const sp<AMessage> &notify,
119 const sp<AMessage> &notify,
H A DMediaSender.cpp38 const sp<AMessage> &notify)
40 mNotify(notify),
122 sp<AMessage> notify = new AMessage(kWhatSenderNotify, id()); local
123 notify->setInt32("generation", mGeneration);
124 mTSSender = new RTPSender(mNetSession, notify);
171 sp<AMessage> notify = new AMessage(kWhatSenderNotify, id()); local
172 notify->setInt32("generation", mGeneration);
173 notify->setSize("trackIndex", trackIndex);
175 info->mSender = new RTPSender(mNetSession, notify);
350 sp<AMessage> notify local
36 MediaSender( const sp<ANetworkSession> &netSession, const sp<AMessage> &notify) argument
357 sp<AMessage> notify = mNotify->dup(); local
364 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DANetworkSession.cpp70 const sp<AMessage> &notify);
118 void notify(NotificationReason reason);
145 const sp<AMessage> &notify)
150 mNotify(notify),
266 sp<AMessage> notify = mNotify->dup(); local
267 notify->setInt32("sessionID", mSessionID);
268 notify->setInt32("reason", kWhatDatagram);
271 notify->setString(
280 notify->setInt32("fromPort", ntohs(remoteAddr.sin_port));
282 notify
141 Session( int32_t sessionID, State state, int s, const sp<AMessage> &notify) argument
345 sp<AMessage> notify = mNotify->dup(); local
368 sp<AMessage> notify = mNotify->dup(); local
394 sp<AMessage> notify = mNotify->dup(); local
649 void ANetworkSession::Session::notify(NotificationReason reason) { function in class:android::ANetworkSession::Session
713 createRTSPClient( const char *host, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
726 createRTSPServer( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
739 createUDPSession( unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) argument
744 createUDPSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
760 createTCPDatagramSession( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
773 createTCPDatagramSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
820 createClientOrServer( Mode mode, const struct in_addr *localAddr, unsigned port, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp32 const sp<AMessage> &notify,
34 : mNotify(notify),
94 sp<AMessage> notify = mNotify->dup(); local
95 notify->setMessage("codec-request", msg);
96 notify->post();
127 sp<AMessage> notify = mNotify->dup(); local
128 notify->setMessage("codec-request", msg);
129 notify->post();
31 Decoder( const sp<AMessage> &notify, const sp<NativeWindowWrapper> &nativeWindow) argument
H A DStreamingSource.h31 const sp<AMessage> &notify,
/frameworks/av/media/libstagefright/rtsp/
H A DSDPLoader.cpp33 SDPLoader::SDPLoader(const sp<AMessage> &notify, uint32_t flags, bool uidValid, uid_t uid) argument
34 : mNotify(notify),
147 sp<AMessage> notify = mNotify->dup(); local
148 notify->setInt32("what", kWhatSDPLoaded);
149 notify->setInt32("result", err);
150 notify->setObject("description", desc);
151 notify->post();
H A DARTPSource.cpp43 const sp<AMessage> &notify)
52 mNotify(notify) {
59 mAssembler = new AAVCAssembler(notify);
62 mAssembler = new AMPEG4AudioAssembler(notify, params);
65 mAssembler = new AH263Assembler(notify);
68 mAssembler = new AAMRAssembler(notify, false /* isWide */, params);
70 mAssembler = new AAMRAssembler(notify, true /* isWide */, params);
73 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params);
76 mAssembler = new ARawAudioAssembler(notify, desc.c_str(), params);
78 mAssembler = new AMPEG2TSAssembler(notify, des
40 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
98 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DAAMRAssembler.h34 const sp<AMessage> &notify, bool isWide,
H A DAH263Assembler.h32 AH263Assembler(const sp<AMessage> &notify);
H A DAMPEG2TSAssembler.h31 const sp<AMessage> &notify,
H A DARawAudioAssembler.h31 const sp<AMessage> &notify,
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationTestList.java102 mNM.notify(1, n);
126 mNM.notify(1, n);
138 mNM.notify(1, n);
148 mNM.notify(1, n);
156 mNM.notify(1, n);
166 mNM.notify(1, n);
182 mNM.notify(1, n);
184 mNM.notify(2, new Notification(NotificationTestList.this,
190 mNM.notify(3, new Notification(NotificationTestList.this,
204 mNM.notify(
[all...]
/frameworks/av/drm/libdrmframework/include/
H A DIDrmServiceListener.h43 virtual status_t notify(const DrmInfoEvent& event) = 0;
55 virtual status_t notify(const DrmInfoEvent& event);
/frameworks/base/services/input/
H A DInputListener.h33 virtual void notify(const sp<InputListenerInterface>& listener) const = 0;
49 virtual void notify(const sp<InputListenerInterface>& listener) const;
76 virtual void notify(const sp<InputListenerInterface>& listener) const;
111 virtual void notify(const sp<InputListenerInterface>& listener) const;
131 virtual void notify(const sp<InputListenerInterface>& listener) const;
149 virtual void notify(const sp<InputListenerInterface>& listener) const;
154 * The interface used by the InputReader to notify the InputListener about input events.
/frameworks/av/include/media/
H A DIDrmClient.h32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
H A DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
H A DIMediaRecorderClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
/frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
H A DMP4Source.h27 MP4Source(const sp<AMessage> &notify, const sp<IStreamSource> &source);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp27 status_t BpDrmServiceListener::notify(const DrmInfoEvent& event) { function in class:BpDrmServiceListener
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
59 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmedia/
H A DIDrmClient.cpp43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) function in class:android::BpDrmClient
73 notify((DrmPlugin::EventType)eventType, extra, &obj);

Completed in 417 milliseconds

12345678