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

12

/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.cpp686 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
688 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
698 listener->notify(msg, ext1, ext2);
H A Dmediaplayer.cpp725 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
727 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
746 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
776 // ext2: Implementation dependant error code.
777 ALOGE("error (%d, %d)", ext1, ext2);
790 // ext2: Implementation dependant error code.
792 ALOGW("info/warning (%d, %d)", ext1, ext2);
811 ALOGV("New video size %d x %d", ext1, ext2);
813 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.cpp42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
49 data.writeInt32(ext2);
95 int32_t ext2 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
H A DIProCameraCallbacks.cpp50 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
57 data.writeInt32(ext2);
95 int32_t ext2 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
H A DCameraBase.cpp158 notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_SERVER_DIED, /*ext2*/0);
172 int32_t ext2)
180 listener->notify(msgType, ext1, ext2);
170 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
H A DCamera.cpp296 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
298 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
H A DProCamera.cpp60 void ProCamera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
62 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 */);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
117 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
118 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2);
146 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) {
148 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/);
176 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_ERROR, ext1=%s (%d), ext2=%d)",
177 media_error_type_to_string((media_error_type) ext1), ext1, ext2);
194 SL_LOGV("MediaPlayerNotificationClient::notify(msg=MEDIA_INFO, ext1=%s (%d), ext2=%d)",
195 media_info_type_to_string((media_info_type) ext1), ext1, ext2);
201 SL_LOGV("MEDIA_INFO_NETWORK_BANDWIDTH %d kbps", ext2);
[all...]
/frameworks/av/cmds/stagefright/
H A Dstream.cpp272 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h69 int msg, int ext1, int ext2, const Parcel *obj);
209 void sendEvent(int msg, int ext1=0, int ext2=0, argument
219 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp636 int msg, int ext1, int ext2, const Parcel *in) {
638 notifyListener_l(msg, ext1, ext2, in);
642 int msg, int ext1, int ext2, const Parcel *in) {
685 sendEvent(msg, ext1, ext2, in);
635 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
641 notifyListener_l( int msg, int ext1, int ext2, const Parcel *in) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp67 void notify(int msg, int ext1, int ext2);
100 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) argument
105 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, NULL);
H A Dandroid_media_MediaPlayer.cpp77 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
110 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
119 msg, ext1, ext2, jParcel);
124 msg, ext1, ext2, NULL);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp49 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
73 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
76 UNUSED_UNLESS_VERBOSE(ext2);
77 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp714 int32_t ext2, void* user) {
733 client->handleGenericNotify(msgType, ext1, ext2);
901 int32_t ext1, int32_t ext2) {
905 c->notifyCallback(msgType, ext1, ext2);
713 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
900 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
/frameworks/av/camera/tests/
H A DProCameraTests.cpp258 virtual void onTriggerNotify(int32_t ext1, int32_t ext2, int32_t ext3) { argument
260 dout << "Trigger notify: " << ext1 << " " << ext2
295 virtual void notify(int32_t msg, int32_t ext1, int32_t ext2) { argument
297 << ", ext1: " << std::hex << ext1 << ", ext2: " << std::hex << ext2
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp500 int32_t msgCode, ext1, ext2; local
503 CHECK(msg->findInt32("ext2", &ext2));
505 ALOGI("Saw HDCP notification code %d, ext1 %d, ext2 %d",
506 msgCode, ext1, ext2);
1669 int msg, int ext1, int ext2, const Parcel *obj);
1683 int msg, int ext1, int ext2, const Parcel * /* obj */) {
1687 notify->setInt32("ext2", ext2);
1682 notify( int msg, int ext1, int ext2, const Parcel * ) argument
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h34 int32_t ext2,
452 int32_t ext2, void *user)
457 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser);
451 __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);
193 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
215 mCameraJObjectWeak, msgType, ext1, ext2, NULL);

Completed in 3714 milliseconds

12