/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 | 433 private final float[] mTimes; field in VolumeShaper.Configuration 447 + ", mTimes[] = " + Arrays.toString(mTimes) in toString() 458 Arrays.hashCode(mTimes), Arrays.hashCode(mVolumes)); in hashCode() 475 && Arrays.equals(mTimes, other.mTimes) in equals() 508 parcelable.xy = new float[mTimes.length * 2]; in toInterpolatorParcelable() 509 for (int i = 0; i < mTimes.length; ++i) { in toInterpolatorParcelable() 510 parcelable.xy[i * 2] = mTimes[i]; in toInterpolatorParcelable() 666 mTimes = null; in Configuration() 688 mTimes = times; in Configuration() 739 return mTimes; in getTimes() [all …]
|
D | MediaPlayer.java | 5849 private long mTimes[]; field in MediaPlayer.TimeProvider 5885 mTimes = new long[0]; in TimeProvider() 6033 System.arraycopy(mTimes, 0, newTimes, 0, mTimes.length); in registerListener() 6035 mTimes = newTimes; in registerListener() 6040 mTimes[i] = MediaTimeProvider.NO_TIME; in registerListener() 6049 mTimes[registerListener(listener)] = timeUs; in notifyAt() 6060 mTimes[i] = 0; in scheduleUpdate() 6074 System.arraycopy(mTimes, i + 1, in cancelNotifications() 6075 mTimes, i, mTimes.length - i - 1); in cancelNotifications() 6077 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/base/services/core/java/com/android/server/pm/ |
D | SnapshotStatistics.java | 235 public final int[] mTimes; field in SnapshotStatistics.Stats 291 mTimes[buildBin]++; in rebuild() 316 mTimes = new int[mTimeBins.count()]; in Stats() 327 mTimes = Arrays.copyOf(orig.mTimes, orig.mTimes.length); in Stats() 423 for (int i = 0; i < mTimes.length; i++) { in dumpTimes() 424 pw.format(Locale.US, " %10d", mTimes[i]); in dumpTimes() 472 FrameworkStatsLog.PACKAGE_MANAGER_SNAPSHOT_REPORTED, mTimes, mUsed, in logSnapshotStatistics()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | VideoFrameSchedulerBase.h | 80 nsecs_t mTimes[kHistorySize]; member
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 3778 Landroid/app/AppOpsManager$OpEntry;->mTimes:[J 27554 Landroid/media/MediaPlayer$TimeProvider;->mTimes:[J 27849 Landroid/media/MediaPlayer2Impl$TimeProvider;->mTimes:[J 31812 Landroid/media/VolumeShaper$Configuration$Builder;->mTimes:[F
|