Searched defs:notify (Results 1 - 25 of 52) sorted by relevance

123

/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/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) function in class:android::BpMediaPlayerClient
70 notify(msg, ext1, ext2, &obj);
H A DIMediaRecorderClient.cpp38 virtual void notify(int msg, int ext1, int ext2) function in class:android::BpMediaRecorderClient
62 notify(msg, ext1, ext2);
H A DIHDCP.cpp41 virtual void notify( function in struct:android::BpHDCPObserver
132 notify(msg, ext1, ext2, &obj);
H A Dmediarecorder.cpp659 void MediaRecorder::notify(int msg, int ext1, int ext2) function in class:android::MediaRecorder
671 listener->notify(msg, ext1, ext2);
679 notify(MEDIA_RECORDER_EVENT_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp37 const sp<AMessage> &notify, const char *desc, const AString &params)
38 : mNotifyMsg(notify),
36 AMPEG2TSAssembler( const sp<AMessage> &notify, const char *desc, const AString &params) argument
H A DAH263Assembler.cpp29 AH263Assembler::AH263Assembler(const sp<AMessage> &notify) argument
30 : mNotifyMsg(notify),
H A DARawAudioAssembler.cpp37 const sp<AMessage> &notify, const char *desc, const AString &params)
38 : mNotifyMsg(notify),
36 ARawAudioAssembler( const sp<AMessage> &notify, const char *desc, const AString &params) argument
H A DAAMRAssembler.cpp62 const sp<AMessage> &notify, bool isWide, const AString &params)
64 mNotifyMsg(notify),
61 AAMRAssembler( const sp<AMessage> &notify, bool isWide, const AString &params) argument
H A DAAVCAssembler.cpp35 AAVCAssembler::AAVCAssembler(const sp<AMessage> &notify) argument
36 : mNotifyMsg(notify),
H A DARTPSession.cpp85 sp<AMessage> notify = new AMessage(kWhatAccessUnitComplete, id()); local
86 notify->setSize("track-index", mTracks.size() - 1);
89 rtpSocket, rtcpSocket, mDesc, i, notify, false /* injected */);
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 DAMPEG4ElementaryAssembler.cpp110 const sp<AMessage> &notify, const AString &desc, const AString &params)
111 : mNotifyMsg(notify),
109 AMPEG4ElementaryAssembler( const sp<AMessage> &notify, const AString &desc, const AString &params) argument
/frameworks/base/core/java/android/app/
H A DNotificationManager.java28 * Class to notify the user of events that happen. This is how you tell
42 * Each of the notify methods takes an int id parameter and optionally a
47 * of the notify methods with a (tag, id) pair that is currently active and
106 public void notify(int id, Notification notification) method in class:NotificationManager
108 notify(null, id, notification);
122 public void notify(String tag, int id, Notification notification) method in class:NotificationManager
130 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
135 Log.w(TAG, "notify: id corrupted: sent " + id + ", got back " + idOut[0]);
152 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
157 Log.w(TAG, "notify
[all...]
/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/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 DNuPlayerRenderer.cpp34 const sp<AMessage> &notify)
36 mNotify(notify),
400 sp<AMessage> notify = mNotify->dup(); local
401 notify->setInt32("what", kWhatVideoRenderingStart);
402 notify->post();
406 sp<AMessage> notify = mNotify->dup(); local
407 notify->setInt32("what", kWhatEOS);
408 notify->setInt32("audio", static_cast<int32_t>(audio));
409 notify->setInt32("finalResult", finalResult);
410 notify
32 Renderer( const sp<MediaPlayerBase::AudioSink> &sink, const sp<AMessage> &notify) argument
572 sp<AMessage> notify = mNotify->dup(); local
627 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DRTSPSource.cpp77 sp<AMessage> notify = new AMessage(kWhatNotify, mReflector->id()); local
79 mHandler = new MyHandler(mURL.c_str(), notify, mUIDValid, mUID);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp33 const sp<MediaSource> &source, const sp<AMessage> &notify)
35 mNotify(notify),
68 void MediaPuller::stopAsync(const sp<AMessage> &notify) { argument
70 msg->setMessage("notify", notify);
115 sp<AMessage> notify; local
116 CHECK(msg->findMessage("notify", &notify));
117 notify->post();
140 sp<AMessage> notify local
32 MediaPuller( const sp<MediaSource> &source, const sp<AMessage> &notify) argument
164 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DConverter.cpp41 const sp<AMessage> &notify,
46 mNotify(notify),
191 sp<AMessage> notify = mNotify->dup(); local
192 notify->setInt32("what", kWhatError);
193 notify->setInt32("err", err);
194 notify->post();
373 sp<AMessage> notify = new AMessage(kWhatEncoderActivity, id()); local
374 notify->setInt64("whenUs", ALooper::GetNowUs());
375 mEncoder->requestActivityNotification(notify);
424 sp<AMessage> notify local
40 Converter( const sp<AMessage> &notify, const sp<ALooper> &codecLooper, const sp<AMessage> &format, bool usePCMAudio) argument
472 sp<AMessage> notify = mNotify->dup(); local
568 sp<AMessage> notify = mNotify->dup(); local
585 sp<AMessage> notify = mNotify->dup(); local
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXComponent.cpp88 void SoftOMXComponent::notify( function in class:android::SoftOMXComponent
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DTunnelRenderer.cpp40 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { function in struct:android::TunnelRenderer::PlayerClient
41 ALOGI("notify %d, %d, %d", msg, ext1, ext2);
278 sp<AMessage> notify = mNotifyLost->dup(); local
279 notify->setInt32("seqNo", (mLastDequeuedExtSeqNo + 1) & 0xffff);
280 notify->post();
/frameworks/av/media/libstagefright/wifi-display/
H A Dudptest.cpp102 sp<AMessage> notify = new AMessage(kWhatUDPNotify, id()); local
109 notify,
123 sp<AMessage> notify = new AMessage(kWhatUDPNotify, id()); local
127 localPort, notify, &mUDPSession));
/frameworks/base/services/input/
H A DInputListener.cpp38 void NotifyConfigurationChangedArgs::notify(const sp<InputListenerInterface>& listener) const { function in class:android::NotifyConfigurationChangedArgs
62 void NotifyKeyArgs::notify(const sp<InputListenerInterface>& listener) const { function in class:android::NotifyKeyArgs
99 void NotifyMotionArgs::notify(const sp<InputListenerInterface>& listener) const { function in class:android::NotifyMotionArgs
117 void NotifySwitchArgs::notify(const sp<InputListenerInterface>& listener) const { function in class:android::NotifySwitchArgs
132 void NotifyDeviceResetArgs::notify(const sp<InputListenerInterface>& listener) const { function in class:android::NotifyDeviceResetArgs
175 args->notify(mInnerListener);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp61 // Map a media_event_type enum (the msg of an IMediaPlayerClient::notify) to a string or NULL
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { function in class:android::MediaPlayerNotificationClient
117 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
122 SL_LOGW("MediaPlayerNotificationClient::notify after GenericMediaPlayer destroyed");
145 // Or alternatively, we could notify unconditionally and let it decide whether to handle.
147 genericMediaPlayer->notify(PLAYEREVENT_VIDEO_SIZE_UPDATE,
157 genericMediaPlayer->notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/);
176 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_ERROR, ext1=%s (%d), ext2=%d)",
184 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/);
194 SL_LOGV("MediaPlayerNotificationClient::notify(ms
[all...]

Completed in 241 milliseconds

123