Searched refs:notify (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/frameworks/base/libs/hwui/
H A DFrameMetricsObserver.h26 virtual void notify(const int64_t* buffer);
/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/libmediaplayer2/nuplayer2/
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 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();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp42 const sp<AMessage> &notify,
46 : Source(notify),
111 sp<AMessage> notify = new AMessage(kWhatSessionNotify, this); local
114 notify,
263 sp<AMessage> notify = dupNotify(); local
264 notify->setInt32("what", pushWhat);
265 notify->setBuffer("buffer", buffer);
273 notify->post();
280 notify->post();
337 // notify th
41 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
387 sp<AMessage> notify = dupNotify(); local
398 sp<AMessage> notify = dupNotify(); local
406 sp<AMessage> notify = dupNotify(); local
415 sp<AMessage> notify = dupNotify(); local
429 sp<AMessage> notify = dupNotify(); local
[all...]
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/foundation/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/libstagefright/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/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationTestList.java129 mNM.notify(7001, n);
141 mNM.notify("default", 7004, n);
159 mNM.notify("default", 7004, n);
176 mNM.notify(6000, n);
182 mNM.notify(6001, n);
190 mNM.notify(6002, n);
197 mNM.notify(6003, n);
208 mNM.notify(6100, n);
214 mNM.notify(6101, n);
220 mNM.notify(610
[all...]
/frameworks/support/compat/src/main/aidl/android/support/v4/app/
H A DINotificationSideChannel.aidl31 void notify(String packageName, int id, String tag, in Notification notification);
/frameworks/av/media/libstagefright/rtsp/
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 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...]
H A DAAMRAssembler.h34 const sp<AMessage> &notify, bool isWide,
/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/av/drm/common/include/
H A DIDrmServiceListener.h43 virtual status_t notify(const DrmInfoEvent& event) = 0;
55 virtual status_t notify(const DrmInfoEvent& event);
/frameworks/ml/nn/driver/sample/
H A DSampleDriver.cpp61 callback->notify(ErrorStatus::INVALID_ARGUMENT, nullptr);
80 callback->notify(ErrorStatus::INVALID_ARGUMENT, nullptr);
87 callback->notify(ErrorStatus::INVALID_ARGUMENT, nullptr);
90 callback->notify(ErrorStatus::NONE, preparedModel);
118 callback->notify(ErrorStatus::GENERAL_FAILURE);
127 Return<void> returned = callback->notify(executionStatus);
141 callback->notify(ErrorStatus::INVALID_ARGUMENT);
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp76 const sp<AMessage> &notify);
126 void notify(NotificationReason reason);
153 const sp<AMessage> &notify)
158 mNotify(notify),
286 sp<AMessage> notify = mNotify->dup(); local
287 notify->setInt32("sessionID", mSessionID);
288 notify->setInt32("reason", kWhatDatagram);
291 notify->setString(
300 notify->setInt32("fromPort", ntohs(remoteAddr.sin_port));
302 notify
149 Session( int32_t sessionID, State state, int s, const sp<AMessage> &notify) argument
365 sp<AMessage> notify = mNotify->dup(); local
388 sp<AMessage> notify = mNotify->dup(); local
414 sp<AMessage> notify = mNotify->dup(); local
494 sp<AMessage> notify = mNotify->dup(); local
780 void ANetworkSession::Session::notify(NotificationReason reason) { function in class:android::ANetworkSession::Session
844 createRTSPClient( const char *host, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
857 createRTSPServer( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
870 createUDPSession( unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) argument
875 createUDPSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
891 createTCPDatagramSession( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
904 createTCPDatagramSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
951 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/native/services/inputflinger/
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;
120 virtual void notify(const sp<InputListenerInterface>& listener) const;
140 virtual void notify(const sp<InputListenerInterface>& listener) const;
158 virtual void notify(const sp<InputListenerInterface>& listener) const;
163 * The interface used by the InputReader to notify the InputListener about input events.
/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/include/media/
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/include/mediadrm/
H A DIDrmClient.h32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
/frameworks/av/media/libmedia/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;

Completed in 449 milliseconds

1234567891011>>