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

1234

/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/drm/libmediadrm/
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);
/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);
/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<MediaHTTPService> &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)
55 mNotify(notify) {
62 mAssembler = new AAVCAssembler(notify);
65 mAssembler = new AMPEG4AudioAssembler(notify, params);
68 mAssembler = new AH263Assembler(notify);
71 mAssembler = new AAMRAssembler(notify, false /* isWide */, params);
73 mAssembler = new AAMRAssembler(notify, true /* isWide */, params);
76 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params);
79 mAssembler = new ARawAudioAssembler(notify, desc.c_str(), params);
81 mAssembler = new AMPEG2TSAssembler(notify, des
40 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
101 sp<AMessage> notify = mNotify->dup(); local
[all...]
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompatSideChannelService.java62 public abstract void notify(String packageName, int id, String tag, Notification notification); method in class:NotificationCompatSideChannelService
79 public void notify(String packageName, int id, String tag, Notification notification) method in class:NotificationCompatSideChannelService.NotificationSideChannelStub
84 NotificationCompatSideChannelService.this.notify(packageName, id, tag, notification);
/frameworks/av/media/libstagefright/filters/
H A DGraphicBufferListener.cpp32 const sp<AMessage> &notify,
34 mNotify = notify;
74 sp<AMessage> notify = mNotify->dup(); local
31 init( const sp<AMessage> &notify, size_t bufferWidth, size_t bufferHeight, size_t bufferCount) argument
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h59 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
61 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DNuPlayer2DecoderBase.cpp32 NuPlayer2::DecoderBase::DecoderBase(const sp<AMessage> &notify) argument
33 : mNotify(notify),
209 sp<AMessage> notify = mNotify->dup(); local
210 notify->setInt32("what", kWhatError);
211 notify->setInt32("err", err);
212 notify->post();
H A DHTTPLiveSource2.cpp42 const sp<AMessage> &notify,
46 : Source(notify),
112 sp<AMessage> notify = new AMessage(kWhatSessionNotify, this); local
115 notify,
264 sp<AMessage> notify = dupNotify(); local
265 notify->setInt32("what", pushWhat);
266 notify->setBuffer("buffer", buffer);
274 notify->post();
281 notify->post();
338 // notify th
41 HTTPLiveSource2( const sp<AMessage> &notify, const sp<MediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
388 sp<AMessage> notify = dupNotify(); local
399 sp<AMessage> notify = dupNotify(); local
407 sp<AMessage> notify = dupNotify(); local
416 sp<AMessage> notify = dupNotify(); local
430 sp<AMessage> notify = dupNotify(); local
[all...]
H A DNuPlayer2DecoderPassThrough.cpp43 const sp<AMessage> &notify,
46 : DecoderBase(notify),
245 // only notify NuPlayer2 to scan sources
367 sp<AMessage> notify = mNotify->dup(); local
368 notify->setInt32("what", kWhatResumeCompleted);
369 notify->post();
394 sp<AMessage> notify = mNotify->dup(); local
395 notify->setInt32("what", kWhatFlushCompleted);
396 notify->post();
405 sp<AMessage> notify local
42 DecoderPassThrough( const sp<AMessage> &notify, const sp<Source> &source, const sp<Renderer> &renderer) argument
[all...]
H A DNuPlayer2Source.h62 // The provides message is used to notify the player about various
64 explicit Source(const sp<AMessage> &notify) argument
65 : mNotify(notify) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp32 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> &notify) argument
33 : mNotify(notify),
207 sp<AMessage> notify = mNotify->dup(); local
208 notify->setInt32("what", kWhatError);
209 notify->setInt32("err", err);
210 notify->post();
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMediaWriter.h59 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
61 mListener->notify(msg, ext1, ext2);
/frameworks/ml/nn/runtime/
H A DCallbacks.cpp81 void CallbackBase::notify() { function in class:android::hardware::neuralnetworks::V1_0::implementation::CallbackBase
88 LOG(ERROR) << "CallbackBase::notify -- post work failed";
106 Return<void> PreparedModelCallback::notify(ErrorStatus errorStatus, function in class:android::hardware::neuralnetworks::V1_0::implementation::PreparedModelCallback
110 CallbackBase::notify();
128 Return<void> ExecutionCallback::notify(ErrorStatus errorStatus) { function in class:android::hardware::neuralnetworks::V1_0::implementation::ExecutionCallback
130 CallbackBase::notify();
/frameworks/native/cmds/lshal/
H A DTimeout.h34 void notify() { function in class:android::lshal::BackgroundTaskState
59 state.notify();
/frameworks/av/drm/libdrmframework/
H A DNoOpDrmManagerClientImpl.cpp222 status_t NoOpDrmManagerClientImpl::notify( function in class:android::NoOpDrmManagerClientImpl
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DMultiArgTestAdapter.java101 public void setValue(String value, boolean notify) { argument
103 if (notify) {

Completed in 271 milliseconds

1234