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

12

/frameworks/base/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2) function in class:android::BpMediaPlayerClient
62 notify(msg, ext1, ext2);
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 Dmediarecorder.cpp622 void MediaRecorder::notify(int msg, int ext1, int ext2) function in class:android::MediaRecorder
634 listener->notify(msg, ext1, ext2);
642 notify(MEDIA_RECORDER_EVENT_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
H A Dmediaplayer.cpp553 void MediaPlayer::notify(int msg, int ext1, int ext2) function in class:android::MediaPlayer
572 // Allows calls from JNI in idle state to notify errors
574 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
653 listener->notify(msg, ext1, ext2);
675 notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
/frameworks/base/core/java/android/app/
H A DNotificationManager.java28 * Class to notify the user of events that happen. This is how you tell
42 * Each of the notify methods takes an int id parameter. This id identifies
44 * within your app. If you call one of the notify methods with an id that is
87 * notify the user, other than the view you're providing. Must not be null.
89 public void notify(int id, Notification notification) method in class:NotificationManager
91 notify(null, id, notification);
100 * notify the user, other than the view you're providing. Must not be null.
104 public void notify(String tag, int id, Notification notification) method in class:NotificationManager
109 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
113 Log.w(TAG, "notify
[all...]
/frameworks/base/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
59 mListener->notify(msg, ext1, ext2);
/frameworks/base/media/libstagefright/rtsp/
H A DAH263Assembler.cpp29 AH263Assembler::AH263Assembler(const sp<AMessage> &notify) argument
30 : mNotifyMsg(notify),
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.cpp87 sp<AMessage> notify = new AMessage(kWhatAccessUnitComplete, id()); local
88 notify->setSize("track-index", mTracks.size() - 1);
91 rtpSocket, rtcpSocket, mDesc, i, notify, false /* injected */);
H A DARTPSource.cpp41 const sp<AMessage> &notify)
57 mAssembler = new AAVCAssembler(notify);
60 mAssembler = new AMPEG4AudioAssembler(notify, params);
63 mAssembler = new AH263Assembler(notify);
66 mAssembler = new AAMRAssembler(notify, false /* isWide */, params);
68 mAssembler = new AAMRAssembler(notify, true /* isWide */, params);
71 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params);
38 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
H A DAMPEG4ElementaryAssembler.cpp90 const sp<AMessage> &notify, const AString &desc, const AString &params)
91 : mNotifyMsg(notify),
89 AMPEG4ElementaryAssembler( const sp<AMessage> &notify, const AString &desc, const AString &params) argument
H A DAMPEG4AudioAssembler.cpp371 const sp<AMessage> &notify, const AString &params)
372 : mNotifyMsg(notify),
370 AMPEG4AudioAssembler( const sp<AMessage> &notify, const AString &params) argument
H A DARTPConnection.cpp82 const sp<AMessage> &notify,
89 msg->setMessage("notify", notify);
206 CHECK(msg->findMessage("notify", &info->mNotifyMsg));
387 sp<AMessage> notify = s->mNotifyMsg->dup(); local
388 notify->setInt32("first-rtp", true);
389 notify->post();
479 sp<AMessage> notify = s->mNotifyMsg->dup(); local
480 notify->setInt32("first-rtcp", true);
481 notify
78 addStream( int rtpSocket, int rtcpSocket, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify, bool injected) argument
[all...]
H A DARTSPConnection.cpp567 sp<AMessage> notify = mObserveBinaryMessage->dup(); local
568 notify->setObject("buffer", buffer);
569 notify->post();
H A DMyHandler.h147 sp<AMessage> notify = new AMessage('biny', id()); local
148 mConn->observeBinaryData(notify);
511 sp<AMessage> notify = new AMessage('accu', id()); local
512 notify->setSize("track-index", trackIndex);
531 notify, track->mUsingInterleavedTCP);
/frameworks/base/services/surfaceflinger/
H A DMessageQueue.h72 void notify() const { barrier.open(); } function in class:android::MessageBase
/frameworks/base/media/libstagefright/
H A DCameraSource.cpp38 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
61 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { function in class:android::CameraSourceListener
62 LOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
H A DMPEG2TSWriter.cpp39 void start(const sp<AMessage> &notify);
118 void MPEG2TSWriter::SourceInfo::start(const sp<AMessage> &notify) { argument
122 mNotify = notify;
232 sp<AMessage> notify = mNotify->dup(); local
233 notify->setInt32("what", kNotifyBuffer);
234 notify->setObject("buffer", out);
235 notify->post();
239 sp<AMessage> notify = mNotify->dup(); local
240 notify->setInt32("what", kNotifyBuffer);
259 notify
334 sp<AMessage> notify = mNotify->dup(); local
348 sp<AMessage> notify = mNotify->dup(); local
370 sp<AMessage> notify = mNotify->dup(); local
482 sp<AMessage> notify = local
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp65 void notify(int msg, int ext1, int ext2);
98 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) function in class:JNIMediaRecorderListener
100 LOGV("JNIMediaRecorderListener::notify");
H A Dandroid_media_MediaPlayer.cpp65 void notify(int msg, int ext1, int ext2);
98 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2) function in class:JNIMediaPlayerListener
141 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java272 private int change(boolean notify, int start, int end, argument
278 if (notify)
351 if (notify) {
399 if (notify) {
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp51 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
118 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) function in class:JNICameraContext
120 LOGV("notify");
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp405 void SoundPool::notify(SoundPoolEvent event) function in class:android::SoundPool
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java404 notificationManager.notify(mTetheredNotification.icon, mTetheredNotification);
1366 void notify(int msgType) { method in class:Tethering.TetherMasterSM.ErrorState
1379 notify(TetherInterfaceSM.CMD_IP_FORWARDING_ENABLE_ERROR);
1387 notify(TetherInterfaceSM.CMD_IP_FORWARDING_DISABLE_ERROR);
1395 notify(TetherInterfaceSM.CMD_START_TETHERING_ERROR);
1409 notify(TetherInterfaceSM.CMD_STOP_TETHERING_ERROR);
1423 notify(TetherInterfaceSM.CMD_SET_DNS_FORWARDERS_ERROR);

Completed in 8846 milliseconds

12