Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 579) sorted by relevance

12345678910>>...24

/frameworks/av/media/libaaudio/src/utility/
DAudioClock.h35 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/
DScheduleCalendar.java110 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/
DEGL_ANDROID_presentation_time.txt39 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/opt/telephony/src/java/com/android/internal/telephony/
DCall.java142 long time = Long.MAX_VALUE; in getEarliestConnection() local
158 if (t < time) { in getEarliestConnection()
160 time = t; in getEarliestConnection()
170 long time = Long.MAX_VALUE; in getEarliestCreateTime() local
184 time = t < time ? t : time; in getEarliestCreateTime()
187 return time; in getEarliestCreateTime()
192 long time = Long.MAX_VALUE;
205 time = t < time ? t : time;
208 return time;
233 long time = 0;
[all …]
DClientWakelockAccountant.java40 int token, int concurrentRequests, long time) { in startAttributingWakelock() argument
42 RilWakelockInfo wlInfo = new RilWakelockInfo(request, token, concurrentRequests, time); in startAttributingWakelock()
49 public void stopAttributingWakelock(int request, int token, long time) { in stopAttributingWakelock() argument
52 completeRequest(wlInfo, time); in stopAttributingWakelock()
57 public void stopAllPendingRequests(long time) { in stopAllPendingRequests() argument
60 completeRequest(wlInfo, time); in stopAllPendingRequests()
67 public void changeConcurrentRequests(int concurrentRequests, long time) { in changeConcurrentRequests() argument
70 wlInfo.updateConcurrentRequests(concurrentRequests, time); in changeConcurrentRequests()
75 private void completeRequest(RilWakelockInfo wlInfo, long time) { in completeRequest() argument
76 wlInfo.setResponseTime(time); in completeRequest()
/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
DNotificationTests.java256 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/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
Dfp_mad.rs27 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/
Dfp_mad.rs27 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/RSUnitTests/src/com/android/rs/unittest/
Dfp_mad.rs43 float time = end(index);
44 rsDebug("fp_mad4 M ops", 1000.f / time);
66 float time = end(index);
67 rsDebug("fp_mad M ops", 1000.f / time);
80 float time = end(index);
81 rsDebug("fp_norm M ops", 10.f / time);
94 float time = end(index);
95 rsDebug("fp_sincos4 M ops", 10.f / time);
108 float time = end(index);
109 rsDebug("fp_sincos M ops", 10.f / time);
[all …]
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dfp_mad.rs27 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/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dfp_mad.rs45 float time = end(index);
46 rsDebug("fp_mad4 M ops", 1000.f / time);
68 float time = end(index);
69 rsDebug("fp_mad M ops", 1000.f / time);
82 float time = end(index);
83 rsDebug("fp_norm M ops", 10.f / time);
96 float time = end(index);
97 rsDebug("fp_sincos4 M ops", 10.f / time);
110 float time = end(index);
111 rsDebug("fp_sincos M ops", 10.f / time);
[all …]
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
Dfp_mad.rs27 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/av/media/libaaudio/examples/utils/
DAAudioExampleUtils.h85 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/ex/common/java/com/android/common/
DOperationScheduler.java170 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/core/java/android/app/usage/
DTimeSparseArray.java43 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/base/services/core/java/com/android/server/notification/
DSystemConditionProviderService.java40 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/telephony/java/android/telephony/
DTelephonyHistogram.java171 private void addToBucketCounter(int[] bucketEndPoints, int[] bucketCounters, int time) { in addToBucketCounter() argument
174 if (time <= bucketEndPoints[i]) { in addToBucketCounter()
195 public void addTimeTaken(int time) { in addTimeTaken() argument
200 mMinTimeMs = time; in addTimeTaken()
201 mMaxTimeMs = time; in addTimeTaken()
202 mAverageTimeMs = time; in addTimeTaken()
208 mInitialTimings[0] = time; in addTimeTaken()
212 if (time < mMinTimeMs) { in addTimeTaken()
213 mMinTimeMs = time; in addTimeTaken()
215 if (time > mMaxTimeMs) { in addTimeTaken()
[all …]
/frameworks/base/services/core/java/com/android/server/display/
DAutomaticBrightnessController.java412 private void handleLightSensorEvent(long time, float lux) { in handleLightSensorEvent() argument
420 applyLightSensorMeasurement(time, lux); in handleLightSensorEvent()
421 updateAmbientLux(time); in handleLightSensorEvent()
424 private void applyLightSensorMeasurement(long time, float lux) { in applyLightSensorMeasurement() argument
426 mAmbientLightRingBuffer.prune(time - mAmbientLightHorizon); in applyLightSensorMeasurement()
427 mAmbientLightRingBuffer.push(time, lux); in applyLightSensorMeasurement()
431 mLastObservedLuxTime = time; in applyLightSensorMeasurement()
550 private long nextAmbientLightBrighteningTransition(long time) { in nextAmbientLightBrighteningTransition() argument
552 long earliestValidTime = time; in nextAmbientLightBrighteningTransition()
562 private long nextAmbientLightDarkeningTransition(long time) { in nextAmbientLightDarkeningTransition() argument
[all …]
/frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
DBatteryStatsParser.java61 Long time = getTime(lineMatcher.group(1)); in parseLine() local
62 if (time != null) { in parseLine()
63 return time + "," + lineMatcher.group(2) + "\n"; in parseLine()
91 long time = 0L; in getTime() local
94 time += Long.parseLong(matches[0]) * 60 * 60 * 1000; // hours in getTime()
99 time += Long.parseLong(matches[0]) * 60 * 1000; // minutes in getTime()
104 time += Long.parseLong(matches[0]) * 1000; // seconds in getTime()
109 time += Long.parseLong(group); // milliseconds in getTime()
111 return time; in getTime()
/frameworks/base/core/tests/coretests/src/android/text/format/
DTimeTest.java534 Time time = new Time(); in disableTestGetJulianDay() local
544 time.set(0, 0, 0, monthDay, 0, 2008); in disableTestGetJulianDay()
545 time.timezone = mTimeZones[zoneIndex]; in disableTestGetJulianDay()
546 long millis = time.normalize(true); in disableTestGetJulianDay()
548 Log.i("TimeTest", time.format("%B %d, %Y")); in disableTestGetJulianDay()
552 int julianDay = Time.getJulianDay(millis, time.gmtoff); in disableTestGetJulianDay()
558 time.set(0, minute, hour, monthDay, 0, 2008); in disableTestGetJulianDay()
559 millis = time.normalize(true); in disableTestGetJulianDay()
560 int day = Time.getJulianDay(millis, time.gmtoff); in disableTestGetJulianDay()
563 + time.hour + ":" + time.minute in disableTestGetJulianDay()
[all …]
/frameworks/base/core/java/android/text/format/
DTime.java950 public static boolean isEpoch(Time time) { in isEpoch() argument
951 long millis = time.toMillis(true); in isEpoch()
1252 public void copyFieldsToTime(Time time) { in copyFieldsToTime() argument
1253 time.second = wallTime.getSecond(); in copyFieldsToTime()
1254 time.minute = wallTime.getMinute(); in copyFieldsToTime()
1255 time.hour = wallTime.getHour(); in copyFieldsToTime()
1256 time.monthDay = wallTime.getMonthDay(); in copyFieldsToTime()
1257 time.month = wallTime.getMonth(); in copyFieldsToTime()
1258 time.year = wallTime.getYear(); in copyFieldsToTime()
1261 time.weekDay = wallTime.getWeekDay(); in copyFieldsToTime()
[all …]
/frameworks/base/core/java/com/android/internal/os/
DBinderCallsStats.java97 callStat.time += duration; in callEnded()
100 uidEntry.time += duration; in callEnded()
121 totalCallsTime += e.time; in dump()
125 totalTimePerUid == null ? e.time : totalTimePerUid + e.time); in dump()
135 if (o1.time < o2.time) { in dump()
137 } else if (o1.time > o2.time) { in dump()
146 if (o1.time < o2.time) { in dump()
148 } else if (o1.time > o2.time) { in dump()
156 .append(uidEntry.uid).append(",").append(e).append(',').append(e.time); in dump()
214 long time; field in BinderCallsStats.CallStat
[all …]
/frameworks/base/core/proto/android/app/
Dalarmmanager.proto31 // 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/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DResult.java30 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/tests/ActivityManagerPerfTests/
DREADME.txt12 * For example, the time it takes from sending an Intent to start a Service
13 to the time the Service runs its callbacks
14 * System.nanoTime() is monotonic and consistent between processes, so we use that for measuring time
15 * If the test app is involved, it will measure the time and send it back to the instrumentation test
16 * The time is sent back through a Binder interface in the Intent with the help of Utils.sendTime()
17 * Each sent time is tagged with an id since there can be multiple events that send back a time
25 * Sends the time it measures back to the test package
39 * Each test should call runPerfFunction() returning the elapsed time for a single iteration
41 * If you are measuring the time elapsed of something that either starts or ends in the target
43 * The target package can report the time it measures through an ITimeReceiverCallback passed
[all …]

12345678910>>...24