Searched defs:ext2 (Results 1 - 25 of 31) 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.cpp680 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
682 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
692 listener->notify(msg, ext1, ext2);
H A Dmediaplayer.cpp666 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
668 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
687 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
717 // ext2: Implementation dependant error code.
718 ALOGE("error (%d, %d)", ext1, ext2);
731 // ext2: Implementation dependant error code.
733 ALOGW("info/warning (%d, %d)", ext1, ext2);
752 ALOGV("New video size %d x %d", ext1, ext2);
754 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.cpp270 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
272 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.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp166 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
167 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
170 void HDCP::observe(int msg, int ext1, int ext2) { argument
174 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.cpp269 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h68 int msg, int ext1, int ext2, const Parcel *obj);
205 void sendEvent(int msg, int ext1=0, int ext2=0, argument
208 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp1154 void* cookie, int msg, int ext1, int ext2)
1198 pEditInfo->overlaySettingsIndex = ext2;
1222 // ext2: Implementation dependant error code.
1223 ALOGE("MEDIA_ERROR; error (%d, %d)", ext1, ext2);
1232 int info_val = ext2;
1234 // ext2: Implementation dependant error code.
1235 //ALOGW("MEDIA_INFO; info/warning (%d, %d)", ext1, ext2);
1249 ALOGV("MEDIA_SET_VIDEO_SIZE; New video size %d x %d", ext1, ext2);
1274 int overlayIndex = ext2;
1280 pEditInfo->overlaySettingsIndex = ext2;
1153 notify( void* cookie, int msg, int ext1, int ext2) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp516 int msg, int ext1, int ext2, const Parcel *in) {
521 sendEvent(msg, ext1, ext2, in);
515 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
H A DNuPlayer.cpp1088 void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) { argument
1099 driver->notifyListener(msg, ext1, ext2, in);
/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);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp41 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
65 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
66 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp694 int32_t ext2, void* user) {
713 client->handleGenericNotify(msgType, ext1, ext2);
881 int32_t ext1, int32_t ext2) {
885 c->notifyCallback(msgType, ext1, ext2);
693 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
880 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 *obj) argument
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h34 int32_t ext2,
438 int32_t ext2, void *user)
443 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser);
437 __notify_cb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user) argument

Completed in 461 milliseconds

12