Home
last modified time | relevance | path

Searched refs:ext2 (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/base/mime/java-res/
Dvendor.mime.types18 # mime ext1 ext2 ext3
24 # extToMime.putIfAbsent("ext2", "mime");
30 # mime ext1 ext2 ext3
31 # ?mime ext1 ext2 ext3
32 # mime ?ext1 ext2 ?ext3
33 # ?mime ?ext1 ?ext2 ?ext3
/frameworks/av/media/libmedia/
DIMediaRecorderClient.cpp38 virtual void notify(int msg, int ext1, int ext2) in notify() argument
44 data.writeInt32(ext2); in notify()
61 int ext2 = data.readInt32(); in onTransact() local
62 notify(msg, ext1, ext2); in onTransact()
DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument
44 data.writeInt32(ext2); in notify()
64 int ext2 = data.readInt32(); in onTransact() local
70 notify(msg, ext1, ext2, &obj); in onTransact()
Dmediaplayer.cpp862 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument
864 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify()
883 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2); in notify()
902 ALOGV("MediaPlayer::notify() MEDIA_DRM_INFO(%d, %d, %d, %p)", msg, ext1, ext2, obj); in notify()
917 ALOGE("error (%d, %d)", ext1, ext2); in notify()
932 ALOGW("info/warning (%d, %d)", ext1, ext2); in notify()
953 ALOGV("New video size %d x %d", ext1, ext2); in notify()
955 mVideoHeight = ext2; in notify()
976 ALOGV("unrecognized message: (%d, %d, %d)", msg, ext1, ext2); in notify()
987 listener->notify(msg, ext1, ext2, obj); in notify()
/frameworks/av/media/libstagefright/include/media/stagefright/
DMediaWriter.h98 void notify(int msg, int ext1, int ext2) { in notify()
103 "val:%d", msg, trackId, type, ext2); in notify()
106 msg, ext1, ext2); in notify()
109 mListener->notify(msg, ext1, ext2); in notify()
/frameworks/base/tools/aapt/
DFileFinder.cpp90 String8 ext2 = getPathExtension(extensions[i]); in checkAndAddFile() local
91 ext2.toLower(); in checkAndAddFile()
93 if (ext == ext2) { in checkAndAddFile()
/frameworks/av/media/libstagefright/tests/writer/
DWriterListener.h32 virtual void notify(int32_t msg, int32_t ext1, int32_t ext2) { in notify() argument
33 ALOGV("msg : %d, ext1 : %d, ext2 : %d", msg, ext1, ext2); in notify()
/frameworks/wilhelm/src/android/
Dandroid_GenericMediaPlayer.cpp116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify() argument
119 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2); in notify()
147 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) { in notify()
149 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/); in notify()
179 media_error_type_to_string((media_error_type) ext1), ext1, ext2); in notify()
198 media_info_type_to_string((media_info_type) ext1), ext1, ext2); in notify()
204 SL_LOGV("MEDIA_INFO_NETWORK_BANDWIDTH %d kbps", ext2); in notify()
Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
/frameworks/av/camera/
DICameraClient.cpp47 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument
54 data.writeInt32(ext2); in notifyCallback()
133 int32_t ext2 = data.readInt32(); in onTransact() local
134 notifyCallback(msgType, ext1, ext2); in onTransact()
DCameraBase.cpp247 int32_t ext2) in notifyCallback() argument
255 listener->notify(msgType, ext1, ext2); in notifyCallback()
DCamera.cpp299 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument
301 return CameraBaseT::notifyCallback(msgType, ext1, ext2); in notifyCallback()
/frameworks/av/media/libmedia/include/media/
DIMediaRecorderClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
Dmediarecorder.h225 virtual void notify(int msg, int ext1, int ext2) = 0;
264 void notify(int msg, int ext1, int ext2);
Dmediaplayer.h207 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
262 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h75 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
288 void sendEvent(int msg, int ext1=0, int ext2=0,
297 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/include/media/
DMediaPlayerInterface.h75 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
288 void sendEvent(int msg, int ext1=0, int ext2=0,
297 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/camera/include/camera/
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);
DCameraBase.h156 int32_t ext2);
/frameworks/av/media/libmediaplayerservice/nuplayer/include/nuplayer/
DNuPlayerDriver.h93 void notifyListener(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
163 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDriver.cpp1034 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener() argument
1036 notifyListener_l(msg, ext1, ext2, in); in notifyListener()
1040 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener_l() argument
1042 this, msg, ext1, ext2, (in == NULL ? -1 : (int)in->dataSize()), mAutoLoop, mLooping); in notifyListener_l()
1088 if (ext2 != 0) { in notifyListener_l()
1089 mMetricsItem->setInt32(kPlayerErrorCode, ext2); in notifyListener_l()
1103 sendEvent(msg, ext1, ext2, in); in notifyListener_l()
/frameworks/av/camera/include/camera/android/hardware/
DICameraClient.h35 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
/frameworks/native/headers/media_plugin/media/hardware/
DHDCPAPI.h28 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.h391 void notify(int msg, int ext1, int ext2, const Parcel *obj);
457 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify() argument
460 client->notify(msg, ext1, ext2, obj); in notify()

12