Searched defs:mTimes (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DVideoFrameScheduler.h75 nsecs_t mTimes[kHistorySize]; member in struct:android::VideoFrameScheduler::PLL
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DVideoFrameScheduler.h75 nsecs_t mTimes[kHistorySize]; member in struct:android::VideoFrameScheduler::PLL
/frameworks/base/media/java/android/media/
H A DVolumeShaper.java425 private final float[] mTimes; field in class:VolumeShaper.Configuration
438 + ", mTimes[] = " + Arrays.toString(mTimes)
449 Arrays.hashCode(mTimes), Arrays.hashCode(mVolumes));
466 && Arrays.equals(mTimes, other.mTimes)
487 // mTimes and mVolumes should have the same length.
488 dest.writeInt(mTimes.length);
489 for (int i = 0; i < mTimes.length; ++i) {
490 dest.writeFloat(mTimes[
766 private float[] mTimes = null; field in class:VolumeShaper.Configuration.Builder
[all...]
H A DMediaPlayer2Impl.java4361 private long mTimes[]; field in class:MediaPlayer2Impl.TimeProvider
4397 mTimes = new long[0];
4544 System.arraycopy(mTimes, 0, newTimes, 0, mTimes.length);
4546 mTimes = newTimes;
4551 mTimes[i] = MediaTimeProvider.NO_TIME;
4560 mTimes[registerListener(listener)] = timeUs;
4571 mTimes[i] = 0;
4585 System.arraycopy(mTimes, i + 1,
4586 mTimes,
[all...]
H A DMediaPlayer.java5517 private long mTimes[]; field in class:MediaPlayer.TimeProvider
5553 mTimes = new long[0];
5701 System.arraycopy(mTimes, 0, newTimes, 0, mTimes.length);
5703 mTimes = newTimes;
5708 mTimes[i] = MediaTimeProvider.NO_TIME;
5717 mTimes[registerListener(listener)] = timeUs;
5728 mTimes[i] = 0;
5742 System.arraycopy(mTimes, i + 1,
5743 mTimes,
[all...]
/frameworks/base/core/java/android/app/
H A DAppOpsManager.java1554 private final long[] mTimes; field in class:AppOpsManager.OpEntry
1565 mTimes = new long[_NUM_UID_STATE];
1567 mTimes[0] = time;
1579 mTimes = new long[_NUM_UID_STATE];
1581 System.arraycopy(times, 0, mTimes, 0, _NUM_UID_STATE);
1603 return maxTime(mTimes, 0, _NUM_UID_STATE);
1607 return maxTime(mTimes, 0, _NUM_UID_STATE);
1611 return maxTime(mTimes, UID_STATE_PERSISTENT, UID_STATE_LAST_NON_RESTRICTED + 1);
1615 return maxTime(mTimes, UID_STATE_LAST_NON_RESTRICTED + 1, _NUM_UID_STATE);
1619 return mTimes[uidStat
[all...]

Completed in 199 milliseconds