/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
D | NotificationTestList.java | 104 mNM.notify(1, n); 128 mNM.notify(1, n); 140 mNM.notify(1, n); 150 mNM.notify(1, n); 158 mNM.notify(1, n); 168 mNM.notify(1, n); 184 mNM.notify(1, n); 186 mNM.notify(2, new Notification(NotificationTestList.this, 192 mNM.notify(3, new Notification(NotificationTestList.this, 206 mNM.notify(1, n); [all …]
|
/frameworks/av/media/libstagefright/rtsp/ |
D | ARTPSource.cpp | 42 const sp<AMessage> ¬ify) in ARTPSource() argument 51 mNotify(notify) { in ARTPSource() 58 mAssembler = new AAVCAssembler(notify); in ARTPSource() 61 mAssembler = new AMPEG4AudioAssembler(notify, params); in ARTPSource() 64 mAssembler = new AH263Assembler(notify); in ARTPSource() 67 mAssembler = new AAMRAssembler(notify, false /* isWide */, params); in ARTPSource() 69 mAssembler = new AAMRAssembler(notify, true /* isWide */, params); in ARTPSource() 72 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params); in ARTPSource() 75 mAssembler = new ARawAudioAssembler(notify, desc.c_str(), params); in ARTPSource() 95 sp<AMessage> notify = mNotify->dup(); in timeUpdate() local [all …]
|
D | ARTPConnection.cpp | 82 const sp<AMessage> ¬ify, in addStream() argument 89 msg->setMessage("notify", notify); in addStream() 413 sp<AMessage> notify = s->mNotifyMsg->dup(); in parseRTP() local 414 notify->setInt32("first-rtp", true); in parseRTP() 415 notify->post(); in parseRTP() 499 sp<AMessage> notify = s->mNotifyMsg->dup(); in parseRTCP() local 500 notify->setInt32("first-rtcp", true); in parseRTCP() 501 notify->post(); in parseRTCP()
|
D | ARTPSession.cpp | 85 sp<AMessage> notify = new AMessage(kWhatAccessUnitComplete, id()); in setup() local 86 notify->setSize("track-index", mTracks.size() - 1); in setup() 89 rtpSocket, rtcpSocket, mDesc, i, notify, false /* injected */); in setup()
|
D | ARawAudioAssembler.cpp | 37 const sp<AMessage> ¬ify, const char *desc, const AString ¶ms) in ARawAudioAssembler() argument 38 : mNotifyMsg(notify), in ARawAudioAssembler()
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerDecoder.cpp | 36 const sp<AMessage> ¬ify, in Decoder() argument 38 : mNotify(notify), in Decoder() 90 sp<AMessage> notify = mNotify->dup(); in onMessageReceived() local 91 notify->setMessage("codec-request", msg); in onMessageReceived() 92 notify->post(); in onMessageReceived() 142 sp<AMessage> notify = mNotify->dup(); in onFillThisBuffer() local 143 notify->setMessage("codec-request", msg); in onFillThisBuffer() 144 notify->post(); in onFillThisBuffer()
|
D | NuPlayerRenderer.cpp | 34 const sp<AMessage> ¬ify) in Renderer() argument 36 mNotify(notify), in Renderer() 394 sp<AMessage> notify = mNotify->dup(); in notifyEOS() local 395 notify->setInt32("what", kWhatEOS); in notifyEOS() 396 notify->setInt32("audio", static_cast<int32_t>(audio)); in notifyEOS() 397 notify->setInt32("finalResult", finalResult); in notifyEOS() 398 notify->post(); in notifyEOS() 560 sp<AMessage> notify = mNotify->dup(); in notifyFlushComplete() local 561 notify->setInt32("what", kWhatFlushComplete); in notifyFlushComplete() 562 notify->setInt32("audio", static_cast<int32_t>(audio)); in notifyFlushComplete() [all …]
|
/frameworks/av/media/libstagefright/ |
D | MPEG2TSWriter.cpp | 39 void start(const sp<AMessage> ¬ify); 131 void MPEG2TSWriter::SourceInfo::start(const sp<AMessage> ¬ify) { in start() argument 135 mNotify = notify; in start() 245 sp<AMessage> notify = mNotify->dup(); in extractCodecSpecificData() local 246 notify->setInt32("what", kNotifyBuffer); in extractCodecSpecificData() 247 notify->setBuffer("buffer", out); in extractCodecSpecificData() 248 notify->setInt32("oob", true); in extractCodecSpecificData() 249 notify->post(); in extractCodecSpecificData() 253 sp<AMessage> notify = mNotify->dup(); in postAVCFrame() local 254 notify->setInt32("what", kNotifyBuffer); in postAVCFrame() [all …]
|
D | ACodec.cpp | 471 sp<AMessage> notify = mNotify->dup(); in allocateBuffersOnPort() local 472 notify->setInt32("what", ACodec::kWhatBuffersAllocated); in allocateBuffersOnPort() 474 notify->setInt32("portIndex", portIndex); in allocateBuffersOnPort() 484 notify->setObject("portDesc", desc); in allocateBuffersOnPort() 485 notify->post(); in allocateBuffersOnPort() 2006 sp<AMessage> notify = mNotify->dup(); in sendFormatChange() local 2007 notify->setInt32("what", kWhatOutputFormatChanged); in sendFormatChange() 2024 notify->setString("mime", MEDIA_MIMETYPE_VIDEO_RAW); in sendFormatChange() 2025 notify->setInt32("width", videoDef->nFrameWidth); in sendFormatChange() 2026 notify->setInt32("height", videoDef->nFrameHeight); in sendFormatChange() [all …]
|
D | AMRWriter.cpp | 224 notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED, 0); in threadFunc() 247 notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_INFO_MAX_DURATION_REACHED, 0); in threadFunc() 271 … notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_TRACK_INFO_COMPLETION_STATUS, UNKNOWN_ERROR); in threadFunc()
|
/frameworks/base/services/input/ |
D | InputListener.h | 33 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; 110 virtual void notify(const sp<InputListenerInterface>& listener) const; 130 virtual void notify(const sp<InputListenerInterface>& listener) const; 148 virtual void notify(const sp<InputListenerInterface>& listener) const;
|
D | InputListener.cpp | 38 void NotifyConfigurationChangedArgs::notify(const sp<InputListenerInterface>& listener) const { in notify() function in android::NotifyConfigurationChangedArgs 62 void NotifyKeyArgs::notify(const sp<InputListenerInterface>& listener) const { in notify() function in android::NotifyKeyArgs 98 void NotifyMotionArgs::notify(const sp<InputListenerInterface>& listener) const { in notify() function in android::NotifyMotionArgs 116 void NotifySwitchArgs::notify(const sp<InputListenerInterface>& listener) const { in notify() function in android::NotifySwitchArgs 131 void NotifyDeviceResetArgs::notify(const sp<InputListenerInterface>& listener) const { in notify() function in android::NotifyDeviceResetArgs 174 args->notify(mInnerListener); in flush()
|
/frameworks/base/core/java/android/app/ |
D | NotificationManager.java | 101 public void notify(int id, Notification notification) in notify() method in NotificationManager 103 notify(null, id, notification); in notify() 117 public void notify(String tag, int id, Notification notification) in notify() method in NotificationManager
|
/frameworks/av/drm/libdrmframework/include/ |
D | IDrmServiceListener.h | 43 virtual status_t notify(const DrmInfoEvent& event) = 0; 55 virtual status_t notify(const DrmInfoEvent& event);
|
/frameworks/av/drm/common/ |
D | IDrmServiceListener.cpp | 27 status_t BpDrmServiceListener::notify(const DrmInfoEvent& event) { in notify() function in BpDrmServiceListener 52 status_t status = notify(DrmInfoEvent(uniqueId, type, message)); in onTransact()
|
/frameworks/av/media/libmedia/ |
D | IMediaRecorderClient.cpp | 38 virtual void notify(int msg, int ext1, int ext2) in notify() function in android::BpMediaRecorderClient 62 notify(msg, ext1, ext2); in onTransact()
|
D | IMediaPlayerClient.cpp | 38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() function in android::BpMediaPlayerClient 70 notify(msg, ext1, ext2, &obj); in onTransact()
|
/frameworks/av/include/media/stagefright/ |
D | MediaWriter.h | 57 void notify(int msg, int ext1, int ext2) { in notify() function 59 mListener->notify(msg, ext1, ext2); in notify()
|
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
D | JavaBridgeTestBase.java | 36 notify(); in onPageFinished() 58 notify(); in notifyResultIsReady()
|
/frameworks/wilhelm/src/android/ |
D | android_GenericPlayer.cpp | 284 void GenericPlayer::notify(const char* event, int data, bool async) { in notify() function in android::GenericPlayer 297 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { in notify() function in android::GenericPlayer 401 notify(PLAYEREVENT_PREPARED, mStateFlags & kFlagPrepared ? PLAYER_SUCCESS : PLAYER_FAILURE, in onPrepare() 554 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/); in notifyStatus() 561 notify(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, (int32_t)mLastNotifiedCacheFill, true/*async*/); in notifyCacheFill() 629 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATMARKER, true /*async*/); in updateOneShot() 666 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATNEWPOS, true /*async*/); in updateOneShot()
|
D | android_GenericMediaPlayer.cpp | 116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify() function in android::MediaPlayerNotificationClient 147 genericMediaPlayer->notify(PLAYEREVENT_VIDEO_SIZE_UPDATE, in notify() 157 genericMediaPlayer->notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/); in notify() 184 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/); in notify() 557 notify(PLAYEREVENT_CHANNEL_COUNT, channelCount, true /*async*/); in afterMediaPlayerPreparedSuccessfully()
|
D | android_GenericMediaPlayer.h | 36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj); 68 mPlayerClient->notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0, NULL); in died()
|
/frameworks/av/media/libstagefright/codecs/aacdec/ |
D | SoftAAC2.cpp | 289 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL); in onQueueFilled() 304 notify(OMX_EventPortSettingsChanged, 1, 0, NULL); in onQueueFilled() 333 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL); in onQueueFilled() 394 notify(OMX_EventError, in onQueueFilled() 458 notify(OMX_EventPortSettingsChanged, 1, 0, NULL); in onQueueFilled() 465 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL); in onQueueFilled()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/ |
D | SoftMPEG4.cpp | 376 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL); in onQueueFilled() 383 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL); in onQueueFilled() 434 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL); in onQueueFilled() 500 notify(OMX_EventPortSettingsChanged, in portSettingsChanged() 522 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL); in portSettingsChanged() 530 notify(OMX_EventPortSettingsChanged, 1, 0, NULL); in portSettingsChanged()
|
/frameworks/av/include/media/ |
D | mediarecorder.h | 197 virtual void notify(int msg, int ext1, int ext2) = 0; 230 void notify(int msg, int ext1, int ext2);
|