Searched defs:getCurrentPosition (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/media/libmediaplayerservice/
H A DTestPlayerStub.h88 virtual status_t getCurrentPosition(int *p) { function in class:android::TestPlayerStub
89 return mPlayer->getCurrentPosition(p);
H A DMidiFile.cpp294 status_t MidiFile::getCurrentPosition(int* position) function in class:android::MidiFile
296 LOGV("MidiFile::getCurrentPosition");
298 LOGE("getCurrentPosition(): file not open");
302 LOGE("getCurrentPosition(): mPlayTime = %ld", mPlayTime);
H A DStagefrightPlayer.cpp93 status_t StagefrightPlayer::getCurrentPosition(int *msec) { function in class:android::StagefrightPlayer
94 LOGV("getCurrentPosition");
H A DVorbisPlayer.cpp295 status_t VorbisPlayer::getCurrentPosition(int* position) function in class:android::VorbisPlayer
297 LOGV("getCurrentPosition\n");
300 LOGE("getCurrentPosition(): file not open");
305 LOGE("getCurrentPosition(): ov_time_tell returned %d", *position);
H A DMediaPlayerService.cpp1070 status_t MediaPlayerService::Client::getCurrentPosition(int *msec) function in class:android::MediaPlayerService::Client
1072 LOGV("getCurrentPosition");
1075 status_t ret = p->getCurrentPosition(msec);
1077 LOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
1079 LOGE("getCurrentPosition returned %d", ret);
/frameworks/base/media/libmedia/
H A DIMediaPlayer.cpp125 status_t getCurrentPosition(int* msec) function in class:android::BpMediaPlayer
281 status_t ret = getCurrentPosition(&msec);
H A Dmediaplayer.cpp360 status_t MediaPlayer::getCurrentPosition(int *msec) function in class:android::MediaPlayer
362 LOGV("getCurrentPosition");
370 return mPlayer->getCurrentPosition(msec);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java98 public static boolean getCurrentPosition(String filePath){ method in class:CodecTest
117 currentPosition = mp.getCurrentPosition();
143 currentPosition = mp.getCurrentPosition();
180 currentPosition = mp.getCurrentPosition();
212 int curPosition = mp.getCurrentPosition();
340 currentPosition = mp.getCurrentPosition();
360 currentPosition = mp.getCurrentPosition();
386 currentPosition = mp.getCurrentPosition();
413 currentPosition = mp.getCurrentPosition();
442 currentPosition = mp.getCurrentPosition();
[all...]
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp78 virtual status_t getCurrentPosition(int *msec) {return OK;} function in class:__anon381::Player
/frameworks/base/core/java/android/widget/
H A DMediaController.java381 int position = mPlayer.getCurrentPosition();
551 int pos = mPlayer.getCurrentPosition();
562 int pos = mPlayer.getCurrentPosition();
604 int getCurrentPosition(); method in interface:MediaController.MediaPlayerControl
H A DVideoView.java324 (seekToPosition != 0 || getCurrentPosition() > 0)) {
629 public int getCurrentPosition() { method in class:VideoView
631 return mMediaPlayer.getCurrentPosition();
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoViewProxy.java202 public static int getCurrentPosition() { method in class:HTML5VideoViewProxy.VideoPlayer
205 currentPosMs = mVideoView.getCurrentPosition();
504 msg.arg1 = VideoPlayer.getCurrentPosition();
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java82 * as {@link #getCurrentPosition()},
246 * can be retrieved with a call to {@link #getCurrentPosition()}, which
276 * <tr><td>getCurrentPosition </p></td>
942 public native int getCurrentPosition(); method in class:MediaPlayer

Completed in 295 milliseconds