Searched refs:notify (Results 1 - 11 of 11) sorted by path

/system/core/adb/
H A Dusb_libusb.c58 adb_cond_t notify; member in struct:usb_handle
338 adb_cond_init(&usb->notify, 0);
H A Dusb_linux.c70 adb_cond_t notify; member in struct:usb_handle
322 res = pthread_cond_timedwait(&h->notify, &h->lock, &ts);
402 adb_cond_broadcast(&h->notify);
510 adb_cond_broadcast(&h->notify);
569 adb_cond_init(&usb->notify, 0);
H A Dusb_linux_client.c36 adb_cond_t notify; member in struct:usb_handle
54 adb_cond_wait(&usb->notify, &usb->lock);
120 adb_cond_init(&h->notify, 0);
148 // notify usb_open_thread that we are disconnected
149 adb_cond_signal(&h->notify);
/system/core/toolbox/
H A DAndroid.mk28 notify \
/system/media/mca/filterpacks/videosrc/java/
H A DCameraSource.java353 CameraSource.this.notify();
H A DMediaSource.java528 MediaSource.this.notify();
539 MediaSource.this.notify();
559 if (mLogVerbose) Log.v(TAG, "New frame: notify");
561 MediaSource.this.notify();
562 if (mLogVerbose) Log.v(TAG, "New frame: notify done");
/system/media/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp339 // doesn't need prefetching, notify good to go
529 notify(PLAYEREVENT_ENDOFSTREAM, 1, true);
602 // Do not call the superclass onPrepare to notify, because it uses a default error
605 notify(PLAYEREVENT_PREPARED, (int32_t)prepareRes, true);
H A Dandroid_GenericMediaPlayer.cpp82 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { function in class:android::MediaPlayerNotificationClient
83 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
88 SL_LOGW("MediaPlayerNotificationClient::notify after GenericMediaPlayer destroyed");
111 // Or alternatively, we could notify unconditionally and let it decide whether to handle.
113 genericMediaPlayer->notify(PLAYEREVENT_VIDEO_SIZE_UPDATE,
123 genericMediaPlayer->notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/);
140 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/);
300 // notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/);
477 notify(PLAYEREVENT_CHANNEL_COUNT, channelCount, true /*async*/);
495 // if the data source was local, and the buffers are considered full so we need to notify tha
[all...]
H A Dandroid_GenericMediaPlayer.h37 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
69 mPlayerClient->notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0, NULL);
110 const bool mHasVideo; // const allows MediaPlayerNotificationClient::notify to safely access
H A Dandroid_GenericPlayer.cpp273 void GenericPlayer::notify(const char* event, int data, bool async) { function in class:android::GenericPlayer
274 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
286 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { function in class:android::GenericPlayer
287 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
390 notify(PLAYEREVENT_PREPARED, mStateFlags & kFlagPrepared ? PLAYER_SUCCESS : PLAYER_FAILURE,
542 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
549 notify(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, (int32_t)mLastNotifiedCacheFill, true/*async*/);
617 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATMARKER, true /*async*/);
654 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATNEWPOS, true /*async*/);
H A Dandroid_GenericPlayer.h123 virtual void notify(const char* event, int data1, bool async);
124 virtual void notify(const char* event, int data1, int data2, bool async);

Completed in 2593 milliseconds