Searched refs:mTimes (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/services/core/java/com/android/server/display/utils/ |
D | RollingBuffer.java | 31 private long[] mTimes; // Milliseconds field in RollingBuffer 36 mTimes = new long[INITIAL_SIZE]; in RollingBuffer() 53 mTimes[mEnd] = time; in add() 86 return mTimes[offsetOf(index)]; in getTime() 121 mTimes[mStart] = minTime; in truncate() 143 sb.append(mValues[index] + " @ " + mTimes[index]); in toString() 164 System.arraycopy(mTimes, mStart, times, 0, mCount - mStart); in expandBuffer() 165 System.arraycopy(mTimes, 0, times, mCount - mStart, mStart); in expandBuffer() 171 mTimes = times; in expandBuffer() 177 if (mTimes[offsetOf(i)] > time) { in getLatestIndexBefore()
|
D | History.java | 34 private long[] mTimes; field in History 58 mTimes = new long[size]; in History() 70 mTimes[mEnd] = mClock.millis(); in add() 90 final long time = mTimes[index]; in toString()
|
/frameworks/base/media/java/android/media/ |
D | VolumeShaper.java | 431 private final float[] mTimes; field in VolumeShaper.Configuration 445 + ", mTimes[] = " + Arrays.toString(mTimes) in toString() 456 Arrays.hashCode(mTimes), Arrays.hashCode(mVolumes)); in hashCode() 473 && Arrays.equals(mTimes, other.mTimes) in equals() 495 dest.writeInt(mTimes.length); in writeToParcel() 496 for (int i = 0; i < mTimes.length; ++i) { in writeToParcel() 497 dest.writeFloat(mTimes[i]); in writeToParcel() 567 mTimes = null; in Configuration() 589 mTimes = times; in Configuration() 640 return mTimes; in getTimes() [all …]
|
D | MediaPlayer.java | 5504 private long mTimes[]; field in MediaPlayer.TimeProvider 5540 mTimes = new long[0]; in TimeProvider() 5688 System.arraycopy(mTimes, 0, newTimes, 0, mTimes.length); in registerListener() 5690 mTimes = newTimes; in registerListener() 5695 mTimes[i] = MediaTimeProvider.NO_TIME; in registerListener() 5704 mTimes[registerListener(listener)] = timeUs; in notifyAt() 5715 mTimes[i] = 0; in scheduleUpdate() 5729 System.arraycopy(mTimes, i + 1, in cancelNotifications() 5730 mTimes, i, mTimes.length - i - 1); in cancelNotifications() 5732 mTimes[mTimes.length - 1] = NO_TIME; in cancelNotifications() [all …]
|
/frameworks/av/media/libstagefright/ |
D | VideoFrameSchedulerBase.cpp | 96 mTimes[0] = 0; 97 mTimes[1] = period; 98 mTimes[2] = period * 3; 99 mTimes[3] = period * 4; 100 mTimes[4] = period * 7; 101 mTimes[5] = period * 8; 102 mTimes[6] = period * 10; 103 mTimes[7] = period * 12; 144 nsecs_t time = mTimes[ix]; in fit() 192 nsecs_t time = mTimes[index]; in prime() [all …]
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | VideoFrameSchedulerBase.h | 80 nsecs_t mTimes[kHistorySize]; member
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 3781 Landroid/app/AppOpsManager$OpEntry;->mTimes:[J 37683 Landroid/media/MediaPlayer$TimeProvider;->mTimes:[J 37978 Landroid/media/MediaPlayer2Impl$TimeProvider;->mTimes:[J 41947 Landroid/media/VolumeShaper$Configuration$Builder;->mTimes:[F
|