Searched defs:notify (Results 1 - 25 of 75) 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.cpp679 void MediaRecorder::notify(int msg, int ext1, int ext2) function in class:android::MediaRecorder
691 listener->notify(msg, ext1, ext2);
699 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, this); 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/av/media/libstagefright/filters/
H A DGraphicBufferListener.cpp31 const sp<AMessage> &notify,
33 mNotify = notify;
73 sp<AMessage> notify = mNotify->dup(); local
30 init( const sp<AMessage> &notify, size_t bufferWidth, size_t bufferHeight, size_t bufferCount) argument
/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/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/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp31 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> &notify) argument
32 : mNotify(notify),
205 sp<AMessage> notify = mNotify->dup(); local
206 notify->setInt32("what", kWhatError);
207 notify->setInt32("err", err);
208 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),
87 sp<AMessage> notify = new AMessage(kWhatSessionNotify, this); local
90 notify,
217 sp<AMessage> notify = dupNotify(); local
218 notify->setInt32("what", pushWhat);
219 notify->setBuffer("buffer", buffer);
227 notify->post();
234 notify->post();
291 // notify th
36 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
340 sp<AMessage> notify = dupNotify(); local
351 sp<AMessage> notify = dupNotify(); local
359 sp<AMessage> notify = dupNotify(); local
368 sp<AMessage> notify = dupNotify(); local
382 sp<AMessage> notify = dupNotify(); local
[all...]
H A DNuPlayerCCDecoder.cpp117 NuPlayer::CCDecoder::CCDecoder(const sp<AMessage> &notify) argument
118 : mNotify(notify),
H A DNuPlayerDecoderPassThrough.cpp43 const sp<AMessage> &notify,
46 : DecoderBase(notify),
246 // only notify NuPlayer to scan sources
363 sp<AMessage> notify = mNotify->dup(); local
364 notify->setInt32("what", kWhatResumeCompleted);
365 notify->post();
390 sp<AMessage> notify = mNotify->dup(); local
391 notify->setInt32("what", kWhatFlushCompleted);
392 notify->post();
401 sp<AMessage> notify local
42 DecoderPassThrough( const sp<AMessage> &notify, const sp<Source> &source, const sp<Renderer> &renderer) argument
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DMultiArgTestAdapter.java103 public void setValue(String value, boolean notify) { argument
105 if (notify) {
/frameworks/av/drm/libdrmframework/
H A DNoOpDrmManagerClientImpl.cpp148 status_t NoOpDrmManagerClientImpl::notify(const DrmInfoEvent& event) { function in class:android::NoOpDrmManagerClientImpl

Completed in 394 milliseconds

123