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

/frameworks/support/v4/java/android/support/v4/media/
H A DTransportController.java60 public abstract long getCurrentPosition(); method in class:TransportController
H A DTransportMediator.java300 public long getCurrentPosition() { method in class:TransportMediator
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DMediaPlayerProxy.java47 int getCurrentPosition(); method in interface:MediaPlayerProxy
H A DSingleThreadedMediaPlayerProxy.java98 public synchronized int getCurrentPosition() { method in class:SingleThreadedMediaPlayerProxy
99 return mDelegate.getCurrentPosition();
H A DVariableSpeedNative.java76 /*package*/ static native int getCurrentPosition(); method in class:VariableSpeedNative
H A DVariableSpeed.java354 public int getCurrentPosition() { method in class:VariableSpeed
364 return VariableSpeedNative.getCurrentPosition();
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h91 virtual status_t getCurrentPosition(int *p) { function in class:android::TestPlayerStub
92 return mPlayer->getCurrentPosition(p);
H A DMidiFile.cpp299 status_t MidiFile::getCurrentPosition(int* position) function in class:android::MidiFile
301 ALOGV("MidiFile::getCurrentPosition");
303 ALOGE("getCurrentPosition(): file not open");
307 ALOGE("getCurrentPosition(): mPlayTime = %ld", mPlayTime);
H A DStagefrightPlayer.cpp120 status_t StagefrightPlayer::getCurrentPosition(int *msec) { function in class:android::StagefrightPlayer
121 ALOGV("getCurrentPosition");
H A DMediaPlayerService.cpp978 status_t MediaPlayerService::Client::getCurrentPosition(int *msec) function in class:android::MediaPlayerService::Client
980 ALOGV("getCurrentPosition");
983 status_t ret = p->getCurrentPosition(msec);
985 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
987 ALOGE("getCurrentPosition returned %d", ret);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DMediaControllerGlue.java173 public int getCurrentPosition() { method in class:MediaControllerGlue
H A DPlaybackControlGlue.java433 int position = getCurrentPosition();
532 mControlsRow.setCurrentTime(getCurrentPosition());
731 public abstract int getCurrentPosition(); method in class:PlaybackControlGlue
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java224 public int getCurrentPosition() { method in class:RgbPlayerActivity.RgbView
H A DVideoDumpView.java236 public int getCurrentPosition () { method in class:VideoDumpView
238 return mMediaPlayer.getCurrentPosition();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java104 public static boolean getCurrentPosition(String filePath){ method in class:CodecTest
123 currentPosition = mp.getCurrentPosition();
149 currentPosition = mp.getCurrentPosition();
186 currentPosition = mp.getCurrentPosition();
218 int curPosition = mp.getCurrentPosition();
346 currentPosition = mp.getCurrentPosition();
366 currentPosition = mp.getCurrentPosition();
392 currentPosition = mp.getCurrentPosition();
419 currentPosition = mp.getCurrentPosition();
448 currentPosition = mp.getCurrentPosition();
[all...]
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp82 virtual status_t getCurrentPosition(int *msec) {return OK;} function in class:__anon996::Player
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp316 // getCurrentPosition here.
318 getCurrentPosition(&msec);
381 status_t NuPlayerDriver::getCurrentPosition(int *msec) { function in class:android::NuPlayerDriver
392 status_t ret = mPlayer->getCurrentPosition(&tempUs);
396 // means getCurrentPosition can be called before seek is completed. Iow, renderer may return a
500 // getCurrentPosition should always return OK
501 getCurrentPosition(&msec);
H A DNuPlayerRenderer.cpp184 status_t NuPlayer::Renderer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer::Renderer
H A DNuPlayer.cpp562 if (getCurrentPosition(&currentPositionUs) == OK) {
1478 status_t NuPlayer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer
1484 return renderer->getCurrentPosition(mediaUs);
1843 driver->getCurrentPosition(&posMs);
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp184 status_t getCurrentPosition(int* msec) function in class:android::BpMediaPlayer
442 status_t ret = getCurrentPosition(&msec);
H A Dmediaplayer.cpp399 status_t MediaPlayer::getCurrentPosition(int *msec) function in class:android::MediaPlayer
401 ALOGV("getCurrentPosition");
409 return mPlayer->getCurrentPosition(msec);
/frameworks/base/core/java/android/widget/
H A DMediaController.java431 int position = mPlayer.getCurrentPosition();
642 int pos = mPlayer.getCurrentPosition();
653 int pos = mPlayer.getCurrentPosition();
695 int getCurrentPosition(); method in interface:MediaController.MediaPlayerControl
H A DVideoView.java463 (seekToPosition != 0 || getCurrentPosition() > 0)) {
760 public int getCurrentPosition() { method in class:VideoView
762 return mMediaPlayer.getCurrentPosition();
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java122 * as {@link #getCurrentPosition()},
286 * can be retrieved with a call to {@link #getCurrentPosition()}, which
326 * <tr><td>getCurrentPosition </p></td>
1336 public native int getCurrentPosition(); method in class:MediaPlayer
3411 mLastTimeUs = mPlayer.getCurrentPosition() * 1000L;

Completed in 4038 milliseconds