Searched refs:ext2 (Results 26 - 50 of 51) sorted by relevance

123

/frameworks/av/include/media/
H A DMediaPlayerInterface.h71 int msg, int ext1, int ext2, const Parcel *obj);
271 void sendEvent(int msg, int ext1=0, int ext2=0, argument
281 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
H A Dmediaplayer.h69 // 'ext2' contains an implementation dependant error code to provide
99 // 'ext2' contains an implementation dependant info code to provide
204 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
256 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
/frameworks/av/media/libmediaplayerservice/include/
H A DMediaPlayerInterface.h71 int msg, int ext1, int ext2, const Parcel *obj);
271 void sendEvent(int msg, int ext1=0, int ext2=0, argument
281 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
/frameworks/av/camera/include/camera/
H A DCameraBase.h134 int32_t ext2);
H A DCamera.h42 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
171 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
/frameworks/av/include/camera/
H A DCameraBase.h134 int32_t ext2);
H A DCamera.h42 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
171 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
/frameworks/av/camera/
H A DCameraBase.cpp204 notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_SERVER_DIED, /*ext2*/0);
218 int32_t ext2)
226 listener->notify(msgType, ext1, ext2);
216 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
H A DCamera.cpp351 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
353 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h69 // 'ext2' contains an implementation dependant error code to provide
99 // 'ext2' contains an implementation dependant info code to provide
204 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
256 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp905 int msg, int ext1, int ext2, const Parcel *in) {
907 notifyListener_l(msg, ext1, ext2, in);
911 int msg, int ext1, int ext2, const Parcel *in) {
913 this, msg, ext1, ext2, (in == NULL ? -1 : (int)in->dataSize()), mAutoLoop, mLooping);
948 // ext1 is our primary 'error type' value. Only add ext2 when non-zero.
952 if (ext2 != 0) {
953 mAnalyticsItem->setInt32(kPlayerErrorCode, ext2);
965 sendEvent(msg, ext1, ext2, in);
904 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
910 notifyListener_l( int msg, int ext1, int ext2, const Parcel *in) argument
H A DNuPlayer.h280 void notifyListener(int msg, int ext1, int ext2, const Parcel *in = NULL);
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h37 int32_t ext2,
307 int32_t ext2, void *user);
415 int32_t ext1, int32_t ext2) override;
H A DCameraHardwareInterface.cpp85 NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2) {
86 sNotifyCb((int32_t) msgType, ext1, ext2, (void*) this);
803 int32_t ext2, void *user)
808 object->mNotifyCb(msg_type, ext1, ext2, object->mCbUser);
84 notifyCallback( NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2) argument
802 sNotifyCb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user) argument
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp772 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
774 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
784 listener->notify(msg, ext1, ext2);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp73 void notify(int msg, int ext1, int ext2);
106 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) argument
111 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, NULL);
H A Dandroid_media_MediaPlayer.cpp109 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
142 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
151 msg, ext1, ext2, jParcel);
156 msg, ext1, ext2, NULL);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp506 int32_t msgCode, ext1, ext2; local
509 CHECK(msg->findInt32("ext2", &ext2));
511 ALOGI("Saw HDCP notification code %d, ext1 %d, ext2 %d",
512 msgCode, ext1, ext2);
1673 int msg, int ext1, int ext2, const Parcel *obj);
1687 int msg, int ext1, int ext2, const Parcel * /* obj */) {
1691 notify->setInt32("ext2", ext2);
1686 notify( int msg, int ext1, int ext2, const Parcel * ) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp833 int32_t ext2, void* user) {
847 client->handleGenericNotify(msgType, ext1, ext2);
1054 int32_t ext1, int32_t ext2) {
1058 c->notifyCallback(msgType, ext1, ext2);
832 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
1053 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
/frameworks/av/cmds/stagefright/
H A Dstream.cpp278 virtual void notify(int msg, int ext1 __unused, int ext2 __unused, const Parcel *obj __unused) {
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp52 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
82 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
85 UNUSED_UNLESS_VERBOSE(ext2);
86 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp76 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
197 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
219 mCameraJObjectWeak, msgType, ext1, ext2, NULL);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1391 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1432 const media::Metadata::Type metadata_type = ext2;
1444 ALOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1445 c->notify(msg, ext1, ext2, obj);
1390 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument
H A DMediaPlayerService.h369 int ext1, int ext2, const Parcel *obj);

Completed in 3378 milliseconds

123