Searched defs:getCurrentPosition (Results 1 - 20 of 20) 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/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 DMediaPlayerService.cpp1056 status_t MediaPlayerService::Client::getCurrentPosition(int *msec) function in class:android::MediaPlayerService::Client
1058 ALOGV("getCurrentPosition");
1061 status_t ret = p->getCurrentPosition(msec);
1063 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
1065 ALOGE("getCurrentPosition returned %d", ret);
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp86 virtual status_t getCurrentPosition(int* /* msec */) { return OK; } function in class:__anon1103::Player
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DMediaControllerGlue.java173 public int getCurrentPosition() { method in class:MediaControllerGlue
H A DPlaybackControlGlue.java431 int position = getCurrentPosition();
586 mControlsRow.setCurrentTime(getCurrentPosition());
785 public abstract int getCurrentPosition(); method in class:PlaybackControlGlue
H A DPlaybackControlSupportGlue.java433 int position = getCurrentPosition();
588 mControlsRow.setCurrentTime(getCurrentPosition());
787 public abstract int getCurrentPosition(); method in class:PlaybackControlSupportGlue
/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.java105 public static boolean getCurrentPosition(String filePath){ method in class:CodecTest
124 currentPosition = mp.getCurrentPosition();
150 currentPosition = mp.getCurrentPosition();
187 currentPosition = mp.getCurrentPosition();
219 int curPosition = mp.getCurrentPosition();
347 currentPosition = mp.getCurrentPosition();
367 currentPosition = mp.getCurrentPosition();
393 currentPosition = mp.getCurrentPosition();
420 currentPosition = mp.getCurrentPosition();
449 currentPosition = mp.getCurrentPosition();
[all...]
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp258 status_t getCurrentPosition(int* msec) function in class:android::BpMediaPlayer
582 status_t ret = getCurrentPosition(&msec);
H A Dmediaplayer.cpp463 status_t MediaPlayer::getCurrentPosition(int *msec) function in class:android::MediaPlayer
465 ALOGV("getCurrentPosition");
473 return mPlayer->getCurrentPosition(msec);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp325 // getCurrentPosition here.
327 getCurrentPosition(&unused);
358 getCurrentPosition(&unused);
413 status_t NuPlayerDriver::getCurrentPosition(int *msec) { function in class:android::NuPlayerDriver
424 status_t ret = mPlayer->getCurrentPosition(&tempUs);
428 // means getCurrentPosition can be called before seek is completed. Iow, renderer may return a
538 // getCurrentPosition should always return OK
539 getCurrentPosition(&msec);
H A DNuPlayer.cpp681 if (getCurrentPosition(&currentPositionUs) == OK) {
742 if (getCurrentPosition(&currentPositionUs) != OK) {
1872 status_t NuPlayer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer
1878 return renderer->getCurrentPosition(mediaUs);
2278 driver->getCurrentPosition(&posMs);
H A DNuPlayerRenderer.cpp325 status_t NuPlayer::Renderer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer::Renderer
1712 if (getCurrentPosition(&currentPositionUs) == OK) {
/frameworks/base/core/java/android/widget/
H A DMediaController.java438 int position = mPlayer.getCurrentPosition();
647 int pos = mPlayer.getCurrentPosition();
659 int pos = mPlayer.getCurrentPosition();
701 int getCurrentPosition(); method in interface:MediaController.MediaPlayerControl
H A DVideoView.java459 (seekToPosition != 0 || getCurrentPosition() > 0)) {
758 public int getCurrentPosition() { method in class:VideoView
760 return mMediaPlayer.getCurrentPosition();
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java194 int currentPosition = getCurrentPosition();
412 public int getCurrentPosition() { method in class:DividerView
438 mStartPosition = getCurrentPosition();
1041 && getCurrentPosition() == getSnapAlgorithm().getLastSplitTarget().position;
1051 && getCurrentPosition() == getSnapAlgorithm().getLastSplitTarget().position) {
1087 stopDragging(getCurrentPosition(), mSnapAlgorithm.getMiddleTarget(),
1096 stopDragging(getCurrentPosition(), mSnapAlgorithm.getMiddleTarget(), 336,
1111 mExitStartPosition = getCurrentPosition();
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java124 * as {@link #getCurrentPosition()},
289 * can be retrieved with a call to {@link #getCurrentPosition()}, which
329 * <tr><td>getCurrentPosition </p></td>
1533 getCurrentPosition() * 1000L,
1546 public native int getCurrentPosition(); method in class:MediaPlayer
3877 mLastTimeUs = mPlayer.getCurrentPosition() * 1000L;

Completed in 817 milliseconds