HomeSort by relevance Sort by last modified time
    Searched defs:notify (Results 226 - 250 of 798) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libmediaplayerservice/nuplayer/
HTTPLiveSource.cpp 42 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 the current size here if we have it, otherwise report an initial size of (0,0
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...]
NuPlayerDecoderPassThrough.cpp 44 const sp<AMessage> &notify,
47 : DecoderBase(notify),
246 // only notify NuPlayer to scan sources
368 sp<AMessage> notify = mNotify->dup(); local
369 notify->setInt32("what", kWhatResumeCompleted);
370 notify->post();
395 sp<AMessage> notify = mNotify->dup(); local
396 notify->setInt32("what", kWhatFlushCompleted);
397 notify->post();
406 sp<AMessage> notify = mNotify->dup() local
    [all...]
  /frameworks/base/cmds/hid/src/com/android/commands/hid/
Device.java 125 mCond.notify();
  /frameworks/base/core/java/com/android/internal/midi/
EventScheduler.java 160 // event then notify any threads waiting for the next event.
162 mLock.notify();
248 mLock.notify();
  /frameworks/base/core/tests/notificationtests/src/android/app/
NotificationStressTest.java 127 mNotificationManager.notify(id, notification);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioManagerTest.java 59 mLooperLock.notify();
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoService.java 85 noman.notify(DEBUG_NOTIFICATION, builder.build());
110 noman.notify(CAT_NOTIFICATION, builder.build());
148 noman.notify(DEBUG_NOTIFICATION, new Notification.Builder(context)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
PipNotification.java 197 mNotificationManager.notify(NOTIFICATION_TAG, SystemMessage.NOTE_TV_PIP,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
LeakReporter.java 99 notiMan.notify(TAG, 0, builder.build());
  /frameworks/base/services/core/java/com/android/server/wm/
AlertWindowNotification.java 136 mNotificationManager.notify(mNotificationTag, NOTIFICATION_ID, builder.build());
WindowTracing.java 108 mLock.notify();
154 mLock.notify();
  /frameworks/base/services/core/jni/
com_android_server_fingerprint_FingerprintService.cpp 46 jmethodID notify; member in struct:android::__anon45917
67 env->CallVoidMethod(gCallback, gFingerprintServiceClassInfo.notify, type, arg1, arg2, arg3);
88 // Called by the HAL to notify us of fingerprint events
239 if (gContext.device->notify != hal_notify_callback) {
240 ALOGE("NOTIFY not set properly: %p != %p", gContext.device->notify, hal_notify_callback);
274 gFingerprintServiceClassInfo.notify =
275 GetMethodIDOrDie(env, gFingerprintServiceClassInfo.clazz,"notify", "(IIII)V");
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 99 fillUpDone.notify();
  /frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
CustomSurfaceView.java 231 mSurfaceLock.notify();
240 mSurfaceLock.notify();
  /frameworks/base/tests/testables/src/android/testing/
TestableInstrumentation.java 89 notify(); method
112 notify(); method
  /frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
BlasTest.java 75 this.notify();
  /frameworks/wilhelm/src/android/
android_GenericMediaPlayer.cpp 61 // Map a media_event_type enum (the msg of an IMediaPlayerClient::notify) to a string or NULL
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { function in class:android::MediaPlayerNotificationClient
118 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
123 SL_LOGW("MediaPlayerNotificationClient::notify after GenericMediaPlayer destroyed");
146 // Or alternatively, we could notify unconditionally and let it decide whether to handle.
148 genericMediaPlayer->notify(PLAYEREVENT_VIDEO_SIZE_UPDATE,
158 genericMediaPlayer->notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/);
178 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_ERROR, ext1=%s (%d), ext2=%d)",
186 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/);
197 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_INFO, ext1=%s (%d), ext2=%d)"
    [all...]
android_GenericPlayer.cpp 285 void GenericPlayer::notify(const char* event, int data, bool async) { function in class:android::GenericPlayer
286 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
298 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { function in class:android::GenericPlayer
299 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
402 notify(PLAYEREVENT_PREPARED, mStateFlags & kFlagPrepared ? PLAYER_SUCCESS : PLAYER_FAILURE,
555 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
562 notify(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, (int32_t)mLastNotifiedCacheFill, true/*async*/);
630 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATMARKER, true /*async*/);
667 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATNEWPOS, true /*async*/);
  /hardware/interfaces/gnss/1.0/vts/functional/
VtsHalGnssV1_0TargetTest.cpp 102 * Clear notify/waiting counter, allowing up till the timeout after
120 inline void notify() { function in class:GnssHalTest
187 * Clear notify/waiting counter, allowing up till the timeout after
297 parent_.notify();
305 parent_.notify();
314 parent_.notify();
  /hardware/interfaces/wifi/1.0/vts/functional/
wifi_nan_iface_hidl_test.cpp 55 inline void notify() { function in class:WifiNanIfaceHidlTest
132 parent_.notify();
144 parent_.notify();
156 parent_.notify();
168 parent_.notify();
182 parent_.notify();
194 parent_.notify();
208 parent_.notify();
220 parent_.notify();
232 parent_.notify();
    [all...]
  /hardware/interfaces/wifi/1.2/vts/functional/
wifi_nan_iface_hidl_test.cpp 62 inline void notify() { function in class:WifiNanIfaceHidlTest
145 parent_.notify();
156 parent_.notify();
167 parent_.notify();
178 parent_.notify();
191 parent_.notify();
202 parent_.notify();
215 parent_.notify();
226 parent_.notify();
237 parent_.notify();
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_agps.cpp 64 // This is gvien to linked_list_search() to notify subscriber objs
74 // we notify every subscriber indiscriminatively
117 bool notify = forMe(notification); local
119 if (notify) {
139 notify = false;
143 return notify;
148 bool notify = forMe(notification); local
150 if (notify) {
178 notify = false;
182 return notify;
187 bool notify = forMe(notification); local
218 bool notify = forMe(notification); local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_agps.cpp 64 // This is gvien to linked_list_search() to notify subscriber objs
74 // we notify every subscriber indiscriminatively
117 bool notify = forMe(notification); local
119 if (notify) {
139 notify = false;
143 return notify;
148 bool notify = forMe(notification); local
150 if (notify) {
178 notify = false;
182 return notify;
187 bool notify = forMe(notification); local
218 bool notify = forMe(notification); local
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_agps.cpp 64 // This is gvien to linked_list_search() to notify subscriber objs
74 // we notify every subscriber indiscriminatively
117 bool notify = forMe(notification); local
119 if (notify) {
139 notify = false;
143 return notify;
148 bool notify = forMe(notification); local
150 if (notify) {
178 notify = false;
182 return notify;
187 bool notify = forMe(notification); local
218 bool notify = forMe(notification); local
    [all...]
  /hardware/qcom/gps/msm8909w_3100/core/
SystemStatusOsObserver.cpp 352 void SystemStatusOsObserver::notify(const list<IDataItemCore*>& dlist) function in class:loc_core::SystemStatusOsObserver
359 LOC_LOGD("notify: DataItem In Value:%s", dv.c_str());
534 LOC_LOGV("No items to notify. Nothing to do. Exiting");
537 to->notify(dataItems);
554 to->notify(dataItems);

Completed in 1122 milliseconds

1 2 3 4 5 6 7 8 91011>>