/frameworks/base/media/libmedia/ |
D | IMediaRecorderClient.cpp | 38 virtual void notify(int msg, int ext1, int ext2) in notify() argument 43 data.writeInt32(ext1); in notify() 60 int ext1 = data.readInt32(); in onTransact() local 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() argument 43 data.writeInt32(ext1); in notify() 63 int ext1 = data.readInt32(); in onTransact() local 70 notify(msg, ext1, ext2, &obj); in onTransact()
|
D | mediaplayer.cpp | 610 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 612 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify() 631 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2); in notify() 662 LOGE("error (%d, %d)", ext1, ext2); in notify() 668 mPrepareStatus = ext1; in notify() 676 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) { in notify() 677 LOGW("info/warning (%d, %d)", ext1, ext2); in notify() 693 LOGV("buffering %d", ext1); in notify() 696 LOGV("New video size %d x %d", ext1, ext2); in notify() 697 mVideoWidth = ext1; in notify() [all …]
|
D | mediarecorder.cpp | 660 void MediaRecorder::notify(int msg, int ext1, int ext2) in notify() argument 662 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify() 672 listener->notify(msg, ext1, ext2); in notify()
|
/frameworks/base/libs/camera/ |
D | ICameraClient.cpp | 42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument 48 data.writeInt32(ext1); in notifyCallback() 94 int32_t ext1 = data.readInt32(); in onTransact() local 96 notifyCallback(msgType, ext1, ext2); in onTransact()
|
D | Camera.cpp | 350 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument 358 listener->notify(msgType, ext1, ext2); in notifyCallback()
|
/frameworks/base/include/media/stagefright/ |
D | MediaWriter.h | 57 void notify(int msg, int ext1, int ext2) { in notify() 59 mListener->notify(msg, ext1, ext2); in notify()
|
/frameworks/base/include/media/ |
D | MediaPlayerInterface.h | 59 int msg, int ext1, int ext2, const Parcel *obj); 169 void sendEvent(int msg, int ext1=0, int ext2=0, 172 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
|
D | mediarecorder.h | 197 virtual void notify(int msg, int ext1, int ext2) = 0; 230 void notify(int msg, int ext1, int ext2);
|
D | IMediaRecorderClient.h | 31 virtual void notify(int msg, int ext1, int ext2) = 0;
|
D | IMediaPlayerClient.h | 31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
|
D | mediaplayer.h | 155 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0; 193 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
|
/frameworks/base/include/camera/ |
D | ICameraClient.h | 34 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
|
D | Camera.h | 61 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
|
/frameworks/base/services/camera/libcameraservice/ |
D | CameraService.h | 145 … static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user); 158 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
|
D | CameraHardwareInterface.h | 35 int32_t ext1, 444 static void __notify_cb(int32_t msg_type, int32_t ext1, in __notify_cb() argument 450 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser); in __notify_cb()
|
D | CameraService.cpp | 974 void CameraService::Client::notifyCallback(int32_t msgType, int32_t ext1, in notifyCallback() argument 988 client->handleGenericNotify(msgType, ext1, ext2); in notifyCallback() 1145 int32_t ext1, int32_t ext2) { in handleGenericNotify() argument 1149 c->notifyCallback(msgType, ext1, ext2); in handleGenericNotify()
|
/frameworks/media/libvideoeditor/lvpp/ |
D | VideoEditorPreviewController.cpp | 1146 void* cookie, int msg, int ext1, int ext2) in notify() argument 1211 int err_val = ext1; in notify() 1215 LOGE("MEDIA_ERROR; error (%d, %d)", ext1, ext2); in notify() 1238 LOGV("MEDIA_BUFFERING_UPDATE; buffering %d", ext1); in notify() 1241 LOGV("MEDIA_SET_VIDEO_SIZE; New video size %d x %d", ext1, ext2); in notify() 1276 if (ext1 == 1) { in notify() 1290 LOGV("unrecognized message: (%d, %d, %d)", msg, ext1, ext2); in notify()
|
D | VideoEditorPreviewController.h | 142 static void notify(void* cookie, int msg, int ext1, int ext2);
|
/frameworks/base/media/jni/ |
D | android_media_MediaRecorder.cpp | 66 void notify(int msg, int ext1, int ext2); 99 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) in notify() argument 104 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0); in notify()
|
D | android_media_MediaPlayer.cpp | 69 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL); 102 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 112 msg, ext1, ext2, jArray); in notify() 117 msg, ext1, ext2, NULL); in notify()
|
/frameworks/base/media/libmediaplayerservice/nuplayer/ |
D | NuPlayer.h | 131 void notifyListener(int msg, int ext1, int ext2);
|
/frameworks/base/media/libmediaplayerservice/ |
D | MediaPlayerService.cpp | 1075 void* cookie, int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 1080 MEDIA_INFO_METADATA_UPDATE == ext1) { in notify() 1091 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2); in notify() 1092 client->mClient->notify(msg, ext1, ext2, obj); in notify() 1685 void* cookie, int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 1687 LOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2); in notify() 1694 LOGE("Error %d, %d occurred", ext1, ext2); in notify() 1695 p->mError = ext1; in notify()
|
D | MediaPlayerService.h | 162 int ext1, int ext2, const Parcel *obj); 287 int ext1, int ext2, const Parcel *obj);
|
/frameworks/base/media/libstagefright/ |
D | CameraSource.cpp | 39 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2); 63 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { in notify() argument 64 LOGV("notify(%d, %d, %d)", msgType, ext1, ext2); in notify()
|