Searched refs:notify (Results 1 - 25 of 180) 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);
126 sp<AMessage> notify; local
127 CHECK(msg->findMessage("notify", &notify));
128 notify->post();
161 sp<AMessage> notify local
32 MediaPuller( const sp<MediaSource> &source, const sp<AMessage> &notify) argument
185 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.cpp44 const sp<AMessage> &notify,
48 : mNotify(notify),
296 sp<AMessage> notify = mNotify->dup(); local
297 notify->setInt32("what", kWhatError);
298 notify->setInt32("err", err);
299 notify->post();
451 sp<AMessage> notify = mNotify->dup(); local
452 notify->setInt32("what", kWhatShutdownCompleted);
453 notify->post();
512 sp<AMessage> notify local
43 Converter( const sp<AMessage> &notify, const sp<ALooper> &codecLooper, const sp<AMessage> &outputFormat, uint32_t flags) argument
563 sp<AMessage> notify = mNotify->dup(); local
611 sp<AMessage> notify = mNotify->dup(); local
732 sp<AMessage> notify = mNotify->dup(); local
793 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
384 sp<AMessage> notify = new AMessage(kWhatMediaSenderNotify, id()); local
452 sp<AMessage> notify = mNotify->dup(); local
598 sp<AMessage> notify = mNotify->dup(); local
787 sp<AMessage> notify = new AMessage(kWhatTrackNotify, id()); local
931 sp<AMessage> notify; local
1093 sp<AMessage> notify = mNotify->dup(); local
[all...]
/frameworks/av/include/media/stagefright/foundation/
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,
122 const sp<AMessage> &notify,
/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 DHTTPLiveSource.cpp36 const sp<AMessage> &notify,
40 : Source(notify),
77 sp<AMessage> notify = new AMessage(kWhatSessionNotify, id()); local
80 notify,
171 sp<AMessage> notify = dupNotify(); local
172 notify->setInt32("what", kWhatSubtitleData);
173 notify->setBuffer("buffer", buffer);
174 notify->post();
204 // notify the current size here if we have it, otherwise report an initial size of (0,0)
253 sp<AMessage> notify local
35 HTTPLiveSource( const sp<AMessage> &notify, const char *url, const KeyedVector<String8, String8> *headers, bool uidValid, uid_t uid) argument
[all...]
H A DStreamingSource.h31 const sp<AMessage> &notify,
H A DNuPlayerRenderer.cpp34 const sp<AMessage> &notify,
37 mNotify(notify),
236 sp<AMessage> notify = mNotify->dup(); local
237 notify->setInt32("what", kWhatMediaRenderingStart);
238 notify->post();
435 sp<AMessage> notify = mNotify->dup(); local
436 notify->setInt32("what", kWhatVideoRenderingStart);
437 notify->post();
441 sp<AMessage> notify = mNotify->dup(); local
442 notify
32 Renderer( const sp<MediaPlayerBase::AudioSink> &sink, const sp<AMessage> &notify, uint32_t flags) argument
618 sp<AMessage> notify = mNotify->dup(); local
673 sp<AMessage> notify = mNotify->dup(); local
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DMediaSender.cpp40 const sp<AMessage> &notify)
42 mNotify(notify),
124 sp<AMessage> notify = new AMessage(kWhatSenderNotify, id()); local
125 notify->setInt32("generation", mGeneration);
126 mTSSender = new RTPSender(mNetSession, notify);
173 sp<AMessage> notify = new AMessage(kWhatSenderNotify, id()); local
174 notify->setInt32("generation", mGeneration);
175 notify->setSize("trackIndex", trackIndex);
177 info->mSender = new RTPSender(mNetSession, notify);
354 sp<AMessage> notify local
38 MediaSender( const sp<ANetworkSession> &netSession, const sp<AMessage> &notify) argument
368 sp<AMessage> notify = mNotify->dup(); local
375 sp<AMessage> notify = mNotify->dup(); local
382 sp<AMessage> notify = mNotify->dup(); local
418 sp<AMessage> notify; local
[all...]
/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/av/media/libstagefright/foundation/
H A DANetworkSession.cpp87 const sp<AMessage> &notify);
137 void notify(NotificationReason reason);
164 const sp<AMessage> &notify)
169 mNotify(notify),
297 sp<AMessage> notify = mNotify->dup(); local
298 notify->setInt32("sessionID", mSessionID);
299 notify->setInt32("reason", kWhatDatagram);
302 notify->setString(
311 notify->setInt32("fromPort", ntohs(remoteAddr.sin_port));
313 notify
160 Session( int32_t sessionID, State state, int s, const sp<AMessage> &notify) argument
376 sp<AMessage> notify = mNotify->dup(); local
399 sp<AMessage> notify = mNotify->dup(); local
425 sp<AMessage> notify = mNotify->dup(); local
505 sp<AMessage> notify = mNotify->dup(); local
791 void ANetworkSession::Session::notify(NotificationReason reason) { function in class:android::ANetworkSession::Session
855 createRTSPClient( const char *host, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
868 createRTSPServer( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
881 createUDPSession( unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) argument
886 createUDPSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
902 createTCPDatagramSession( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
915 createTCPDatagramSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
962 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/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));

Completed in 275 milliseconds

12345678