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

12

/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 DIMediaRecorderClient.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.cpp553 void MediaPlayer::notify(int msg, int ext1, int ext2) argument
555 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
574 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
604 // ext2: Implementation dependant error code.
605 LOGE("error (%d, %d)", ext1, ext2);
618 // ext2: Implementation dependant error code.
619 LOGW("info/warning (%d, %d)", ext1, ext2);
637 LOGV("New video size %d x %d", ext1, ext2);
639 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 DIMediaRecorderClient.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.h56 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.h156 virtual void notify(int msg, int ext1, int ext2) = 0;
189 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
131 virtual void notify(int msg, int ext1, int ext2) = 0;
166 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.cpp327 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
335 listener->notify(msgType, ext1, ext2);
/frameworks/base/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, 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.h145 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
216 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.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) { argument
62 LOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/frameworks/base/services/camera/libcameraservice/
H A DCameraService.h137 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
148 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
H A DCameraService.cpp927 int32_t ext2, void* user) {
940 client->handleGenericNotify(msgType, ext1, ext2);
1136 int32_t ext1, int32_t ext2) {
1140 c->notifyCallback(msgType, ext1, ext2);
926 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
1135 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
/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/media/libmediaplayerservice/
H A DMediaPlayerService.h159 static void notify(void* cookie, int msg, int ext1, int ext2);
239 static void notify(void* cookie, int msg, int ext1, int ext2);
H A DMediaPlayerService.cpp1118 void MediaPlayerService::Client::notify(void* cookie, int msg, int ext1, int ext2) argument
1124 const media::Metadata::Type metadata_type = ext2;
1134 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1135 client->mClient->notify(msg, ext1, ext2);
1712 void MediaPlayerService::AudioCache::notify(void* cookie, int msg, int ext1, int ext2) argument
1714 LOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2);
1721 LOGE("Error %d, %d occurred", ext1, ext2);
/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) argument
130 mCameraJObjectWeak, msgType, ext1, ext2, NULL);
/frameworks/base/media/libstagefright/include/
H A DAwesomePlayer.h242 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0);

Completed in 204 milliseconds

12