Searched defs:notify (Results 1 - 25 of 73) 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 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);
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.cpp44 virtual void notify( function in struct:android::BpHDCPObserver
190 notify(msg, ext1, ext2, &obj);
H A Dmediarecorder.cpp686 void MediaRecorder::notify(int msg, int ext1, int ext2) function in class:android::MediaRecorder
698 listener->notify(msg, ext1, ext2);
706 notify(MEDIA_RECORDER_EVENT_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp37 const sp<AMessage> &notify,
40 : mNotifyMsg(notify),
36 AMPEG2TSAssembler( const sp<AMessage> &notify, const char * , const AString & ) argument
H A DAH263Assembler.cpp32 AH263Assembler::AH263Assembler(const sp<AMessage> &notify) argument
33 : mNotifyMsg(notify),
H A DARawAudioAssembler.cpp37 const sp<AMessage> &notify,
40 : mNotifyMsg(notify),
36 ARawAudioAssembler( const sp<AMessage> &notify, const char * , const AString & ) argument
H A DSDPLoader.cpp37 const sp<AMessage> &notify,
40 : mNotify(notify),
139 sp<AMessage> notify = mNotify->dup(); local
140 notify->setInt32("what", kWhatSDPLoaded);
141 notify->setInt32("result", err);
142 notify->setObject("description", desc);
143 notify->post();
36 SDPLoader( const sp<AMessage> &notify, uint32_t flags, const sp<IMediaHTTPService> &httpService) 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...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompatSideChannelService.java61 public abstract void notify(String packageName, int id, String tag, Notification notification); method in class:NotificationCompatSideChannelService
75 public void notify(String packageName, int id, String tag, Notification notification) method in class:NotificationCompatSideChannelService.NotificationSideChannelStub
80 NotificationCompatSideChannelService.this.notify(packageName, id, tag, notification);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h60 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
62 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp31 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> &notify) argument
32 : mNotify(notify),
193 sp<AMessage> notify = mNotify->dup(); local
194 notify->setInt32("what", kWhatError);
195 notify->setInt32("err", err);
196 notify->post();
H A DStreamingSource.cpp36 const sp<AMessage> &notify,
38 : Source(notify),
35 StreamingSource( const sp<AMessage> &notify, const sp<IStreamSource> &source) argument
H A DHTTPLiveSource.cpp37 const sp<AMessage> &notify,
41 : Source(notify),
84 sp<AMessage> notify = new AMessage(kWhatSessionNotify, id()); local
87 notify,
193 sp<AMessage> notify = dupNotify(); local
194 notify->setInt32("what", kWhatSubtitleData);
195 notify->setBuffer("buffer", buffer);
196 notify->post();
226 // notify the current size here if we have it, otherwise report an initial size of (0,0)
275 sp<AMessage> notify local
36 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
[all...]
H A DNuPlayerCCDecoder.cpp115 NuPlayer::CCDecoder::CCDecoder(const sp<AMessage> &notify) argument
116 : mNotify(notify),
H A DNuPlayerDecoderPassThrough.cpp43 const sp<AMessage> &notify,
46 : DecoderBase(notify),
244 // only notify NuPlayer to scan sources
361 sp<AMessage> notify = mNotify->dup(); local
362 notify->setInt32("what", kWhatResumeCompleted);
363 notify->post();
381 sp<AMessage> notify = mNotify->dup(); local
382 notify->setInt32("what", kWhatFlushCompleted);
383 notify->post();
396 sp<AMessage> notify local
42 DecoderPassThrough( const sp<AMessage> &notify, const sp<Source> &source, const sp<Renderer> &renderer) argument
[all...]
/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...]
/frameworks/base/core/java/android/app/
H A DNotificationManager.java33 * Class to notify the user of events that happen. This is how you tell
47 * Each of the notify methods takes an int id parameter and optionally a
52 * of the notify methods with a (tag, id) pair that is currently active and
121 public void notify(int id, Notification notification) method in class:NotificationManager
123 notify(null, id, notification);
137 public void notify(String tag, int id, Notification notification) method in class:NotificationManager
148 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
155 Log.w(TAG, "notify: id corrupted: sent " + id + ", got back " + idOut[0]);
175 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
182 Log.w(TAG, "notify
[all...]
/frameworks/base/core/jni/
H A Dandroid_server_FingerprintManager.cpp51 jmethodID notify; member in struct:android::__anon842
60 // Called by the HAL to notify us of fingerprint events
101 gFingerprintServiceClassInfo.notify, msg.type, arg1, arg2);
107 GET_METHOD_ID(gFingerprintServiceClassInfo.notify, gFingerprintServiceClassInfo.clazz,
108 "notify", "(III)V");
170 if (gContext.device->notify != hal_notify_callback) {
171 ALOGE("NOTIFY not set properly: %p != %p", gContext.device->notify, hal_notify_callback);
196 GET_METHOD_ID(gFingerprintServiceClassInfo.notify, gFingerprintServiceClassInfo.clazz, "notify",
/frameworks/av/drm/libdrmframework/
H A DNoOpDrmManagerClientImpl.cpp148 status_t NoOpDrmManagerClientImpl::notify(const DrmInfoEvent& event) { function in class:android::NoOpDrmManagerClientImpl

Completed in 2387 milliseconds

123