/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | LayerHistoryTestV2.cpp | 89 void recordFramesAndExpect(const sp<mock::MockLayer>& layer, nsecs_t& time, float frameRate, in recordFramesAndExpect() argument 94 history().record(layer.get(), time, time, LayerHistory::LayerUpdateType::Buffer); in recordFramesAndExpect() 95 time += framePeriod; in recordFramesAndExpect() 97 summary = history().summarize(time); in recordFramesAndExpect() 131 const nsecs_t time = systemTime(); in TEST_F() local 134 EXPECT_TRUE(history().summarize(time).empty()); in TEST_F() 139 history().record(layer.get(), 0, time, LayerHistory::LayerUpdateType::Buffer); in TEST_F() 140 ASSERT_EQ(1, history().summarize(time).size()); in TEST_F() 141 EXPECT_EQ(LayerHistory::LayerVoteType::Max, history().summarize(time)[0].vote); in TEST_F() 147 history().record(layer.get(), 0, time, LayerHistory::LayerUpdateType::Buffer); in TEST_F() [all …]
|
D | LayerHistoryTest.cpp | 122 nsecs_t time = mTime; in TEST_F() local 124 history().record(layer.get(), time, time, LayerHistory::LayerUpdateType::Buffer); in TEST_F() 125 time += LO_FPS_PERIOD; in TEST_F() 131 EXPECT_EQ(1, frequentLayerCount(time)); in TEST_F() 150 nsecs_t time = mTime; in TEST_F() local 154 EXPECT_EQ(0, frequentLayerCount(time)); in TEST_F() 158 history().record(layer1.get(), time, time, LayerHistory::LayerUpdateType::Buffer); in TEST_F() 159 time += MAX_FREQUENT_LAYER_PERIOD_NS.count(); in TEST_F() 162 ASSERT_EQ(1, history().summarize(time).size()); in TEST_F() 163 EXPECT_FLOAT_EQ(LO_FPS, history().summarize(time)[0].desiredRefreshRate); in TEST_F() [all …]
|
/frameworks/av/media/libaaudio/src/utility/ |
D | AudioClock.h | 35 struct timespec time; variable 36 int result = clock_gettime(clockId, &time); 40 return (time.tv_sec * AAUDIO_NANOS_PER_SECOND) + time.tv_nsec; 55 struct timespec time; variable 56 time.tv_sec = nanoTime / AAUDIO_NANOS_PER_SECOND; 58 time.tv_nsec = nanoTime - (time.tv_sec * AAUDIO_NANOS_PER_SECOND); 59 int err = clock_nanosleep(clockId, TIMER_ABSTIME, &time, nullptr); 84 struct timespec time; variable 85 time.tv_sec = nanoseconds / AAUDIO_NANOS_PER_SECOND; 87 time.tv_nsec = nanoseconds - (time.tv_sec * AAUDIO_NANOS_PER_SECOND); [all …]
|
/frameworks/base/core/java/android/service/notification/ |
D | ScheduleCalendar.java | 110 final long time = getTime(now, hr, min); in getNextTime() local 111 return time <= now ? addDays(time, 1) : time; in getNextTime() 127 public boolean isInSchedule(long time) { in isInSchedule() argument 129 final long start = getTime(time, mSchedule.startHour, mSchedule.startMinute); in isInSchedule() 130 long end = getTime(time, mSchedule.endHour, mSchedule.endMinute); in isInSchedule() 134 return isInSchedule(-1, time, start, end) || isInSchedule(0, time, start, end); in isInSchedule() 159 public boolean shouldExitForAlarm(long time) { in shouldExitForAlarm() argument 165 && time >= mSchedule.nextAlarm in shouldExitForAlarm() 166 && isAlarmInSchedule(mSchedule.nextAlarm, time); in shouldExitForAlarm() 169 private boolean isInSchedule(int daysOffset, long time, long start, long end) { in isInSchedule() argument [all …]
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_presentation_time.txt | 39 Often when rendering a sequence of images, there is some time at which each 41 this desired presentation time to be specified for each frame rendered to 47 * EGLnsecsANDROID is a signed integer type for representing a time in 59 EGLnsecsANDROID time); 74 surface, EGLnsecsANDROID time); 76 specifies the time at which the current color buffer of surface should be 77 presented to the viewer. The time parameter should be a time in 78 nanoseconds, but the exact meaning of the time depends on the native 79 window system's use of the presentation time. In situations where 80 an absolute time is needed such as displaying the color buffer on a [all …]
|
/frameworks/base/services/core/java/com/android/server/display/utils/ |
D | AmbientFilter.java | 75 public boolean addValue(long time, float value) { in addValue() argument 79 truncateOldValues(time); in addValue() 81 Slog.d(mTag, "add value: " + value + " @ " + time); in addValue() 83 mBuffer.add(time, value); in addValue() 95 public float getEstimate(long time) { in getEstimate() argument 96 truncateOldValues(time); in getEstimate() 97 final float value = filter(time, mBuffer); in getEstimate() 99 Slog.d(mTag, "get estimate: " + value + " @ " + time); in getEstimate() 146 private void truncateOldValues(long time) { in truncateOldValues() argument 147 final long minTime = time - mHorizon; in truncateOldValues() [all …]
|
/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/ |
D | NotificationTests.java | 256 final long time = SystemClock.currentThreadTimeMillis(); in testCreate() local 258 L(" %s: create=%dms", summarize(n), SystemClock.currentThreadTimeMillis() - time); in testCreate() 273 final long time = SystemClock.currentThreadTimeMillis(); in testCreate() local 290 … L(" %s: create=%dms", phoneCall.toString(), SystemClock.currentThreadTimeMillis() - time); in testCreate() 295 final long time = SystemClock.currentThreadTimeMillis(); in testCreate() local 303 L(" %s: create=%dms", summarize(n), SystemClock.currentThreadTimeMillis() - time); in testCreate() 308 final long time = SystemClock.currentThreadTimeMillis(); in testCreate() local 324 L(" %s: create=%dms", summarize(n), SystemClock.currentThreadTimeMillis() - time); in testCreate() 331 final long time = SystemClock.currentThreadTimeMillis(); in testCreate() local 348 L(" %s: create=%dms", summarize(n), SystemClock.currentThreadTimeMillis() - time); in testCreate() [all …]
|
/frameworks/av/services/mediametrics/ |
D | TimeMachine.h | 79 KeyHistory(T key, uid_t allowUid, int64_t time) in KeyHistory() argument 82 , mCreationTime(time) in KeyHistory() 83 , mLastModificationTime(time) in KeyHistory() 92 putValue(AMEDIAMETRICS_PROP_ALLOWUID, (int32_t)allowUid, time); in KeyHistory() 108 status_t getValue(const std::string &property, T* value, int64_t time = 0) const 110 if (time == 0) time = systemTime(SYSTEM_TIME_REALTIME); in REQUIRES() 114 auto eptr = timeSequence.upper_bound(time); in REQUIRES() 125 status_t getValue(const std::string &property, T defaultValue, int64_t time = 0) const 128 return getValue(property, &value, time) != NO_ERROR ? defaultValue : value; in REQUIRES() 132 const std::string &name, const mediametrics::Item::Prop &prop, int64_t time = 0) [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | Call.java | 224 long time = Long.MAX_VALUE; in getEarliestConnection() local 240 if (t < time) { in getEarliestConnection() 242 time = t; in getEarliestConnection() 252 long time = Long.MAX_VALUE; in getEarliestCreateTime() local 266 time = t < time ? t : time; in getEarliestCreateTime() 269 return time; in getEarliestCreateTime() 274 long time = Long.MAX_VALUE; 287 time = t < time ? t : time; 290 return time; 316 long time = 0; [all …]
|
D | ClientWakelockAccountant.java | 41 int token, int concurrentRequests, long time) { in startAttributingWakelock() argument 43 RilWakelockInfo wlInfo = new RilWakelockInfo(request, token, concurrentRequests, time); in startAttributingWakelock() 50 public void stopAttributingWakelock(int request, int token, long time) { in stopAttributingWakelock() argument 53 completeRequest(wlInfo, time); in stopAttributingWakelock() 58 public void stopAllPendingRequests(long time) { in stopAllPendingRequests() argument 61 completeRequest(wlInfo, time); in stopAllPendingRequests() 68 public void changeConcurrentRequests(int concurrentRequests, long time) { in changeConcurrentRequests() argument 71 wlInfo.updateConcurrentRequests(concurrentRequests, time); in changeConcurrentRequests() 76 private void completeRequest(RilWakelockInfo wlInfo, long time) { in completeRequest() argument 77 wlInfo.setResponseTime(time); in completeRequest()
|
/frameworks/av/media/libaaudio/examples/utils/ |
D | AAudioExampleUtils.h | 85 void convertNanosecondsToTimespec(int64_t nanoseconds, struct timespec *time) { in convertNanosecondsToTimespec() argument 86 time->tv_sec = nanoseconds / NANOS_PER_SECOND; in convertNanosecondsToTimespec() 88 time->tv_nsec = nanoseconds - (time->tv_sec * NANOS_PER_SECOND); in convertNanosecondsToTimespec() 93 struct timespec time; variable 94 int result = clock_gettime(clockId, &time); 98 return (time.tv_sec * NANOS_PER_SECOND) + time.tv_nsec; 151 android::status_t futex_wait(void *addr, int current, struct timespec *time) { in futex_wait() argument 153 return sys_futex(addr, FUTEX_WAIT_PRIVATE, current, time, NULL, 0); in futex_wait() 176 struct timespec time; in wait() local 177 convertNanosecondsToTimespec(timeoutNanoseconds, &time); in wait() [all …]
|
/frameworks/base/core/java/android/app/usage/ |
D | TimeSparseArray.java | 43 public int closestIndexOnOrAfter(long time) { in closestIndexOnOrAfter() argument 55 if (time > key) { in closestIndexOnOrAfter() 57 } else if (time < key) { in closestIndexOnOrAfter() 64 if (time < key) { in closestIndexOnOrAfter() 66 } else if (time > key && lo < size) { in closestIndexOnOrAfter() 98 public int closestIndexOnOrBefore(long time) { in closestIndexOnOrBefore() argument 99 final int index = closestIndexOnOrAfter(time); in closestIndexOnOrBefore() 105 if (keyAt(index) == time) { in closestIndexOnOrBefore()
|
/frameworks/ex/common/java/com/android/common/ |
D | OperationScheduler.java | 170 long time = triggerTimeMillis; in getNextTimeMillis() local 172 time = Math.min(time, lastSuccessTimeMillis + options.periodicIntervalMillis); in getNextTimeMillis() 175 time = Math.max(time, moratoriumTimeMillis); in getNextTimeMillis() 176 time = Math.max(time, lastSuccessTimeMillis + options.minTriggerMillis); in getNextTimeMillis() 189 time = Math.max(time, lastErrorTimeMillis + backoff); in getNextTimeMillis() 191 return time; in getNextTimeMillis() 225 long time = mStorage.getLong(name, 0); in getTimeBefore() local 226 if (time > max) { in getTimeBefore() 227 time = max; in getTimeBefore() 228 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time)); in getTimeBefore() [all …]
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | SystemConditionProviderService.java | 40 protected static String ts(long time) { in ts() argument 41 return new Date(time) + " (" + time + ")"; in ts() 50 protected static void dumpUpcomingTime(PrintWriter pw, String var, long time, long now) { in dumpUpcomingTime() argument 52 if (time > 0) { in dumpUpcomingTime() 53 pw.printf("%s, in %s, now=%s", ts(time), formatDuration(time - now), ts(now)); in dumpUpcomingTime() 55 pw.print(time); in dumpUpcomingTime()
|
/frameworks/base/services/core/java/com/android/server/power/ |
D | WakeLockLog.java | 241 final long time = mInjector.currentTimeMillis(); in onWakeLockEvent() local 248 args.argi4 = (int) ((time >> 32) & 0xFFFFFFFFL); in onWakeLockEvent() 249 args.argi5 = (int) (time & 0xFFFFFFFFL); in onWakeLockEvent() 262 long time) { in handleWakeLockEventInternal() argument 266 mLog.addEntry(new LogEntry(time, eventType, tagData, flags)); in handleWakeLockEventInternal() 383 public long time; field in WakeLockLog.LogEntry 397 LogEntry(long time, int type, TagData tag, int flags) { in LogEntry() argument 398 set(time, type, tag, flags); in LogEntry() 410 public void set(long time, int type, TagData tag, int flags) { in set() argument 411 this.time = time; in set() [all …]
|
/frameworks/base/core/tests/benchmarks/src/android/text/format/ |
D | AndroidTimeVsOthersBenchmark.java | 21 import java.time.LocalDateTime; 22 import java.time.ZoneId; 23 import java.time.ZoneOffset; 38 Time time = new Time(timezoneId); in toMillis_androidTime() local 39 time.set(1, 2, 3, 4, 5, 2010); in toMillis_androidTime() 40 answer = time.toMillis(false); in toMillis_androidTime() 50 LocalDateTime time = LocalDateTime.of(2010, 5 + 1, 4, 3, 2, 1); in toMillis_javaTime() local 51 ZoneOffset offset = ZoneId.of(timezoneId).getRules().getOffset(time); in toMillis_javaTime() 52 answer = time.toInstant(offset).toEpochMilli(); in toMillis_javaTime()
|
/frameworks/base/telephony/java/android/telephony/ |
D | TelephonyHistogram.java | 170 private void addToBucketCounter(int[] bucketEndPoints, int[] bucketCounters, int time) { in addToBucketCounter() argument 173 if (time <= bucketEndPoints[i]) { in addToBucketCounter() 194 public void addTimeTaken(int time) { in addTimeTaken() argument 199 mMinTimeMs = time; in addTimeTaken() 200 mMaxTimeMs = time; in addTimeTaken() 201 mAverageTimeMs = time; in addTimeTaken() 207 mInitialTimings[0] = time; in addTimeTaken() 211 if (time < mMinTimeMs) { in addTimeTaken() 212 mMinTimeMs = time; in addTimeTaken() 214 if (time > mMaxTimeMs) { in addTimeTaken() [all …]
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | fp_mad.rscript | 27 float time = end(index); 28 rsDebug("fp_mad4 M ops", 1000.f / time); 50 float time = end(index); 51 rsDebug("fp_mad M ops", 1000.f / time); 64 float time = end(index); 65 rsDebug("fp_norm M ops", 10.f / time); 78 float time = end(index); 79 rsDebug("fp_sincos4 M ops", 10.f / time); 92 float time = end(index); 93 rsDebug("fp_sincos M ops", 10.f / time); [all …]
|
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
D | fp_mad.rscript | 27 float time = end(index); 28 rsDebug("fp_mad4 M ops", 1000.f / time); 50 float time = end(index); 51 rsDebug("fp_mad M ops", 1000.f / time); 64 float time = end(index); 65 rsDebug("fp_norm M ops", 10.f / time); 78 float time = end(index); 79 rsDebug("fp_sincos4 M ops", 10.f / time); 92 float time = end(index); 93 rsDebug("fp_sincos M ops", 10.f / time); [all …]
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
D | fp_mad.rscript | 27 float time = end(index); 28 rsDebug("fp_mad4 M ops", 1000.f / time); 50 float time = end(index); 51 rsDebug("fp_mad M ops", 1000.f / time); 64 float time = end(index); 65 rsDebug("fp_norm M ops", 10.f / time); 78 float time = end(index); 79 rsDebug("fp_sincos4 M ops", 10.f / time); 92 float time = end(index); 93 rsDebug("fp_sincos M ops", 10.f / time); [all …]
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | Result.java | 30 public void add(float time) { in add() argument 31 timeList.add(time); in add() 37 for (float time : timeList) { in getTotalTime() 38 total += time; in getTotalTime() 57 for (float time : timeList) { in getStdevp() 58 float diff = time - avg; in getStdevp()
|
/frameworks/base/core/java/android/util/ |
D | TimeUtils.java | 33 import java.time.LocalTime; 328 public static void formatDuration(long time, long now, PrintWriter pw) { in formatDuration() argument 329 if (time == 0) { in formatDuration() 333 formatDuration(time-now, pw, 0); in formatDuration() 337 public static String formatUptime(long time) { in formatUptime() argument 338 return formatTime(time, SystemClock.uptimeMillis()); in formatUptime() 342 public static String formatRealtime(long time) { in formatRealtime() argument 343 return formatTime(time, SystemClock.elapsedRealtime()); in formatRealtime() 347 public static String formatTime(long time, long referenceTime) { in formatTime() argument 348 long diff = time - referenceTime; in formatTime() [all …]
|
/frameworks/base/core/tests/coretests/src/android/text/format/ |
D | TimeTest.java | 535 Time time = new Time(); in disableTestGetJulianDay() local 545 time.set(0, 0, 0, monthDay, 0, 2008); in disableTestGetJulianDay() 546 time.timezone = mTimeZones[zoneIndex]; in disableTestGetJulianDay() 547 long millis = time.normalize(true); in disableTestGetJulianDay() 549 Log.i("TimeTest", time.format("%B %d, %Y")); in disableTestGetJulianDay() 553 int julianDay = Time.getJulianDay(millis, time.gmtoff); in disableTestGetJulianDay() 559 time.set(0, minute, hour, monthDay, 0, 2008); in disableTestGetJulianDay() 560 millis = time.normalize(true); in disableTestGetJulianDay() 561 int day = Time.getJulianDay(millis, time.gmtoff); in disableTestGetJulianDay() 564 + time.hour + ":" + time.minute in disableTestGetJulianDay() [all …]
|
/frameworks/base/core/proto/android/app/ |
D | alarmmanager.proto | 31 // Alarm time in System.currentTimeMillis() (wall clock time in UTC), which 34 // Alarm time in System.currentTimeMillis() (wall clock time in UTC). This 36 // asleep, it will not be delivered until the next time the device wakes up. 38 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including 41 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including 43 // device is asleep, it will not be delivered until the next time the device 53 // This value is UTC wall clock time in milliseconds, as returned by
|
/frameworks/base/core/java/android/text/format/ |
D | Time.java | 953 public static boolean isEpoch(Time time) { in isEpoch() argument 954 long millis = time.toMillis(true); in isEpoch() 1263 public void copyFieldsToTime(Time time) { in copyFieldsToTime() argument 1264 time.second = wallTime.getSecond(); in copyFieldsToTime() 1265 time.minute = wallTime.getMinute(); in copyFieldsToTime() 1266 time.hour = wallTime.getHour(); in copyFieldsToTime() 1267 time.monthDay = wallTime.getMonthDay(); in copyFieldsToTime() 1268 time.month = wallTime.getMonth(); in copyFieldsToTime() 1269 time.year = wallTime.getYear(); in copyFieldsToTime() 1272 time.weekDay = wallTime.getWeekDay(); in copyFieldsToTime() [all …]
|