Searched refs:ext2 (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2) argument
44 data.writeInt32(ext2);
61 int ext2 = data.readInt32(); local
62 notify(msg, ext1, ext2);
H A Dmediaplayer.cpp504 void MediaPlayer::notify(int msg, int ext1, int ext2) argument
506 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
524 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
551 // ext2: Implementation dependant error code.
552 LOGE("error (%d, %d)", ext1, ext2);
565 // ext2: Implementation dependant error code.
566 LOGW("info/warning (%d, %d)", ext1, ext2);
584 LOGV("New video size %d x %d", ext1, ext2);
586 mVideoHeight = ext2;
[all...]
H A Dmediarecorder.cpp622 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
624 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
634 listener->notify(msg, ext1, ext2);
/frameworks/base/include/media/
H A DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
H A DPVPlayer.h65 void sendEvent(int msg, int ext1=0, int ext2=0) { MediaPlayerBase::sendEvent(msg, ext1, ext2); } argument
H A DMediaPlayerInterface.h57 typedef void (*notify_callback_f)(void* cookie, int msg, int ext1, int ext2);
147 virtual void sendEvent(int msg, int ext1=0, int ext2=0) { if (mNotify) mNotify(mCookie, msg, ext1, ext2); } argument
H A Dmediarecorder.h146 virtual void notify(int msg, int ext1, int ext2) = 0;
179 void notify(int msg, int ext1, int ext2);
H A Dmediaplayer.h51 // 'ext2' contains an implementation dependant error code to provide
81 // 'ext2' contains an implementation dependant info code to provide
126 virtual void notify(int msg, int ext1, int ext2) = 0;
161 void notify(int msg, int ext1, int ext2);
/frameworks/base/libs/camera/
H A DICameraClient.cpp42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
49 data.writeInt32(ext2);
90 int32_t ext2 = data.readInt32(); local
91 notifyCallback(msgType, ext1, ext2);
H A DCamera.cpp309 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
317 listener->notify(msgType, ext1, ext2);
/frameworks/base/include/camera/
H A DICameraClient.h33 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
H A DCamera.h106 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
174 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
H A DCameraHardwareInterface.h42 int32_t ext2,
/frameworks/base/media/libstagefright/
H A DCameraSource.cpp73 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
96 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
97 LOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
H A DAwesomePlayer.cpp418 void AwesomePlayer::notifyListener_l(int msg, int ext1, int ext2) { argument
423 listener->sendEvent(msg, ext1, ext2);
/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) argument
103 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0);
H A Dandroid_media_MediaPlayer.cpp65 void notify(int msg, int ext1, int ext2);
98 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2) argument
101 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0);
/frameworks/base/camera/libcameraservice/
H A DCameraService.h140 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
H A DCameraService.cpp1077 void CameraService::Client::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
1094 c->notifyCallback(msgType, ext1, ext2);
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.h156 static void notify(void* cookie, int msg, int ext1, int ext2);
235 static void notify(void* cookie, int msg, int ext1, int ext2);
H A DMediaPlayerService.cpp1142 void MediaPlayerService::Client::notify(void* cookie, int msg, int ext1, int ext2) argument
1148 const media::Metadata::Type metadata_type = ext2;
1158 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1159 client->mClient->notify(msg, ext1, ext2);
1817 void MediaPlayerService::AudioCache::notify(void* cookie, int msg, int ext1, int ext2) argument
1819 LOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2);
1826 LOGE("Error %d, %d occurred", ext1, ext2);
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp49 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
116 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
128 mCameraJObjectWeak, msgType, ext1, ext2, NULL);
/frameworks/base/media/libstagefright/include/
H A DAwesomePlayer.h220 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0);
/frameworks/base/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp155 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2);
220 void MCameraClient::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) { argument

Completed in 263 milliseconds