Searched defs:ext2 (Results 1 - 23 of 23) sorted by relevance

/frameworks/av/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) argument
44 data.writeInt32(ext2);
64 int ext2 = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
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 DIHDCP.cpp45 int msg, int ext1, int ext2, const Parcel *obj) {
50 data.writeInt32(ext2);
180 int ext2 = data.readInt32(); local
190 notify(msg, ext1, ext2, &obj);
44 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
H A Dmediarecorder.cpp724 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
726 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
736 listener->notify(msg, ext1, ext2);
H A Dmediaplayer.cpp798 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
800 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
819 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
849 // ext2: Implementation dependant error code.
850 ALOGE("error (%d, %d)", ext1, ext2);
863 // ext2: Implementation dependant error code.
865 ALOGW("info/warning (%d, %d)", ext1, ext2);
884 ALOGV("New video size %d x %d", ext1, ext2);
886 mVideoHeight = ext2;
[all...]
/frameworks/base/tools/aapt/
H A DFileFinder.cpp89 String8 ext2 = extensions[i].getPathExtension(); local
90 ext2.toLower();
92 if (ext == ext2) {
/frameworks/av/camera/
H A DICameraClient.cpp46 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
53 data.writeInt32(ext2);
109 int32_t ext2 = data.readInt32(); local
110 notifyCallback(msgType, ext1, ext2);
H A DCameraBase.cpp179 notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_SERVER_DIED, /*ext2*/0);
193 int32_t ext2)
201 listener->notify(msgType, ext1, ext2);
191 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
H A DCamera.cpp343 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
345 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h60 void notify(int msg, int ext1, int ext2) { argument
62 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp162 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
163 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
166 void HDCP::observe(int msg, int ext1, int ext2) { argument
170 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
H A DMediaPlayerService.cpp1268 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1292 const media::Metadata::Type metadata_type = ext2;
1304 ALOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1305 c->notify(msg, ext1, ext2, obj);
1267 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h70 int msg, int ext1, int ext2, const Parcel *obj);
255 void sendEvent(int msg, int ext1=0, int ext2=0, argument
265 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
118 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
119 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2);
147 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) {
149 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/);
178 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_ERROR, ext1=%s (%d), ext2=%d)",
179 media_error_type_to_string((media_error_type) ext1), ext1, ext2);
197 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_INFO, ext1=%s (%d), ext2=%d)",
198 media_info_type_to_string((media_info_type) ext1), ext1, ext2);
204 SL_LOGV("MEDIA_INFO_NETWORK_BANDWIDTH %d kbps", ext2);
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp711 int msg, int ext1, int ext2, const Parcel *in) {
713 notifyListener_l(msg, ext1, ext2, in);
717 int msg, int ext1, int ext2, const Parcel *in) {
719 this, msg, ext1, ext2, mAutoLoop, mLooping);
762 sendEvent(msg, ext1, ext2, in);
710 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
716 notifyListener_l( int msg, int ext1, int ext2, const Parcel *in) argument
H A DNuPlayer.cpp1749 void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) { argument
1760 driver->notifyListener(msg, ext1, ext2, in);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp71 void notify(int msg, int ext1, int ext2);
104 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) argument
109 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, NULL);
H A Dandroid_media_MediaPlayer.cpp84 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
117 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
126 msg, ext1, ext2, jParcel);
131 msg, ext1, ext2, NULL);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp52 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
78 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
81 UNUSED_UNLESS_VERBOSE(ext2);
82 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/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);
1675 int msg, int ext1, int ext2, const Parcel *obj);
1689 int msg, int ext1, int ext2, const Parcel * /* obj */) {
1693 notify->setInt32("ext2", ext2);
1688 notify( int msg, int ext1, int ext2, const Parcel * ) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp767 int32_t ext2, void* user) {
781 client->handleGenericNotify(msgType, ext1, ext2);
945 int32_t ext1, int32_t ext2) {
949 c->notifyCallback(msgType, ext1, ext2);
766 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
944 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h34 int32_t ext2,
488 int32_t ext2, void *user)
493 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser);
487 __notify_cb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp76 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
194 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
216 mCameraJObjectWeak, msgType, ext1, ext2, NULL);

Completed in 4870 milliseconds