Searched defs:getCurrentPosition (Results 1 - 12 of 12) 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 DMediaPlayerService.cpp1031 status_t MediaPlayerService::Client::getCurrentPosition(int *msec) function in class:android::MediaPlayerService::Client
1033 LOGV("getCurrentPosition");
1036 status_t ret = p->getCurrentPosition(msec);
1038 LOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
1040 LOGE("getCurrentPosition returned %d", ret);
/frameworks/base/media/libmedia/
H A DIMediaPlayer.cpp127 status_t getCurrentPosition(int* msec) function in class:android::BpMediaPlayer
301 status_t ret = getCurrentPosition(&msec);
H A Dmediaplayer.cpp363 status_t MediaPlayer::getCurrentPosition(int *msec) function in class:android::MediaPlayer
365 LOGV("getCurrentPosition");
373 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:__anon654::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.java323 (seekToPosition != 0 || getCurrentPosition() > 0)) {
632 public int getCurrentPosition() { method in class:VideoView
634 return mMediaPlayer.getCurrentPosition();
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoViewProxy.java215 public static int getCurrentPosition() { method in class:HTML5VideoViewProxy.VideoPlayer
218 currentPosMs = mVideoView.getCurrentPosition();
528 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
286 * <tr><td>getCurrentPosition </p></td>
963 public native int getCurrentPosition(); method in class:MediaPlayer

Completed in 450 milliseconds