Home
last modified time | relevance | path

Searched refs:since (Results 1 – 25 of 104) sorted by relevance

12345

/frameworks/base/core/proto/android/server/
Dsyncstorageengine.proto31 optional int64 success_time = 3; // time since epoch
33 optional int64 failure_time = 5; // time since epoch
47 optional int64 total_elapsed_time = 1; // time since epoch
60 optional int64 last_event_time = 1; // time since epoch
67 optional int64 last_success_time = 3; // time since epoch
69 optional int64 last_failure_time = 5; // time since epoch
72 optional int64 initial_failure_time = 8; // time since epoch
75 repeated int64 periodic_sync_times = 11; // times since epoch
77 optional int64 last_today_reset_time = 13; // time since epoch
81 repeated int64 per_source_last_success_times = 17; // times since epoch
[all …]
Dpowerstatsservice.proto139 * in this state since boot
143 * Total number of times that the state was entered since boot
147 * Last time this state was entered. Walltime in milliseconds since Unix epoch.
198 /** Accumulated energy since boot in microwatt-seconds (uWs) for this AID. */
204 * An estimate of energy consumption since boot for the subsystem identified
211 /** Walltime in milliseconds since Unix epoch */
214 /** Accumulated energy since device boot in microwatt-seconds (uWs) */
241 * Reports accumulated energy since boot for each energy meter.
250 /** Walltime in milliseconds since Unix epoch */
253 /** Accumulated energy since device boot in microwatt-seconds (uWs) */
/frameworks/base/services/core/java/com/android/server/am/
DBaseAppStateDurationsTracker.java144 long getTotalDurationsSince(String packageName, int uid, long since, long now, int index, in getTotalDurationsSince() argument
156 return res.getTotalDurationsSince(since, now, index); in getTotalDurationsSince()
159 return durations.getTotalDurationsSince(since, now, index); in getTotalDurationsSince()
163 long getTotalDurationsSince(String packageName, int uid, long since, long now, int index) { in getTotalDurationsSince() argument
164 return getTotalDurationsSince(packageName, uid, since, now, index, true /* bgOnly */); in getTotalDurationsSince()
167 long getTotalDurationsSince(String packageName, int uid, long since, long now) { in getTotalDurationsSince() argument
168 return getTotalDurationsSince(packageName, uid, since, now, in getTotalDurationsSince()
172 long getTotalDurationsSince(int uid, long since, long now, int index, boolean bgOnly) { in getTotalDurationsSince() argument
184 return durations.getTotalDurationsSince(since, now, index); in getTotalDurationsSince()
188 long getTotalDurationsSince(int uid, long since, long now, int index) { in getTotalDurationsSince() argument
[all …]
DAppBatteryExemptionTracker.java205 ImmutableBatteryUsage getUidBatteryExemptedUsageSince(int uid, long since, long now, in getUidBatteryExemptedUsageSince() argument
216 result = pkg.getBatteryUsageSince(since, now, types); in getUidBatteryExemptedUsageSince()
265 private Pair<ImmutableBatteryUsage, ImmutableBatteryUsage> getBatteryUsageSince(long since, in getBatteryUsageSince() argument
274 if (event.getTimestamp() < since || event.isStart()) { in getBatteryUsageSince()
277 batteryUsage.add(event.getBatteryUsage(since, Math.min(now, event.getTimestamp()))); in getBatteryUsageSince()
292 Pair<ImmutableBatteryUsage, ImmutableBatteryUsage> getBatteryUsageSince(long since, in getBatteryUsageSince() argument
300 return getBatteryUsageSince(since, now, result); in getBatteryUsageSince()
DBaseAppStateDurations.java218 long getTotalDurationsSince(long since, long now, int index) { in getTotalDurationsSince() argument
227 if (event.getTimestamp() < since || active) { in getTotalDurationsSince()
230 duration += Math.max(0, event.getTimestamp() - Math.max(last, since)); in getTotalDurationsSince()
235 duration += Math.max(0, now - Math.max(last, since)); in getTotalDurationsSince()
DBaseAppStateTimeEvents.java70 int getTotalEventsSince(long since, long now, int index) { in getTotalEventsSince() argument
77 if (event.getTimestamp() >= since) { in getTotalEventsSince()
DBaseAppStateTimeSlotEvents.java119 int getTotalEventsSince(long since, long now, int index) { in getTotalEventsSince() argument
124 final long start = getSlotStartTime(since); in getTotalEventsSince()
/frameworks/rs/script_api/include/
Drs_time.rsh30 * rs_time_t: Seconds since January 1, 1970
32 * Calendar time interpreted as seconds elapsed since the Epoch (00:00:00 on
53 int tm_mon; // Months since January. This ranges from 0 to 11.
54 int tm_year; // Years since 1900.
55 int tm_wday; // Days since Sunday. This ranges from 0 to 6.
56 int tm_yday; // Days since January 1. This ranges from 0 to 365.
61 * rsGetDt: Elapsed time since last call
63 * Returns the time in seconds since this function was last called in this script.
81 * timer: Input time as a number of seconds since January 1, 1970.
89 * rsTime: Seconds since January 1, 1970
[all …]
/frameworks/rs/script_api/
Drs_time.spec27 summary: Seconds since January 1, 1970
29 Calendar time interpreted as seconds elapsed since the Epoch (00:00:00 on
56 summary: Elapsed time since last call
58 Returns the time in seconds since this function was last called in this script.
79 summary: Seconds since January 1, 1970
81 Returns the number of seconds since the Epoch (00:00:00 UTC, January 1, 1970).
/frameworks/base/native/android/
Dlibandroid_net.map.txt8 # These functions have been part of the LL-NDK since API 24.
12 # These functions have been part of the LL-NDK since API 29.
17 # These functions have been part of the LL-NDK since API 31.
21 # These functions have been part of the LL-NDK since API 33.
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-testing.md2 Physics animations are notoriously difficult to test, since they’re essentially small simulations. …
7since animations need to run on the main thread, and they’re asynchronous - the test has to wait f…
11 …ns on a given property to complete before continuing the test. This works since the test is not ru…
/frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/
Dtimestats.proto30 // The stats start time in UTC as seconds since January 1, 1970
32 // The stats end time in UTC as seconds since January 1, 1970
60 // The stats start time in UTC as seconds since January 1, 1970
62 // The stats end time in UTC as seconds since January 1, 1970
/frameworks/hardware/interfaces/displayservice/1.0/
DIEventCallback.hal20 * @param timestamp Nanoseconds since boot.
26 * @param timestamp Nanoseconds since boot.
/frameworks/base/proto/src/
Dipconnectivity.proto12 // Deprecated since version 3, replaced by top-level network_id field in
108 // Deprecated since version 3. Replaced by top level network_id.
112 // Deprecated since version 3. Replaced by previous_default_network_id.
117 // Deprecated since version 3. Replaced by ip_support field.
122 // Deprecated since version 3. Replaced by top-level transports field.
136 // Deprecated since version 2, to be replaced by link_layer field.
141 // NUD_FAILED_ORGANIC and PROVISIONING_LOST_ORGANIC recorded since version 1.
151 // Deprecated since version 3.
169 // Deprecated since version 3.
225 // Deprecated since version 3.
[all …]
/frameworks/base/core/java/android/window/
DSurfaceSyncer.md13 …o notify the caller that the sync is complete. The `Runnable` can be null since not all cases care…
19 …dy(syncId)` If the caller doesn't call this, the sync will never complete since the SurfaceSyncer …
23 …t to add the `SyncTarget` too since there can be multiple syncs open at the same time. There are a…
40 When syncing ViewRootImpl, these methods are implemented already since ViewRootImpl handles the ren…
/frameworks/base/core/proto/android/app/
Dalarmmanager.proto38 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including
41 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including
/frameworks/native/services/surfaceflinger/layerproto/
Dlayerstrace.proto45 /* required: elapsed realtime in nanos since boot of when this entry was logged */
59 /* Number of missed entries since the last entry was recorded. */
/frameworks/base/core/proto/android/view/inputmethod/
Dinputmethodeditortrace.proto57 /* required: elapsed realtime in nanos since boot of when this entry was logged */
103 /* required: elapsed realtime in nanos since boot of when this entry was logged */
136 /* required: elapsed realtime in nanos since boot of when this entry was logged */
/frameworks/av/drm/libmediadrm/protos/
Dmetrics.proto68 // Start time of the session in milliseconds since epoch.
70 // End time of the session in milliseconds since epoch.
/frameworks/base/tests/ActivityManagerPerfTests/
DREADME.txt17 * Each sent time is tagged with an id since there can be multiple events that send back a time
48 * Each timestamp sent to the instrumentation test is tagged with a tag since multiple timestamps
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
DAndroid.bp27 // comment it out for now since we need use some hidden APIs
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Drstime.rscript22 // Test a specific time (since we set America/Los_Angeles localtime)
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
Drstime.rscript22 // Test a specific time (since we set America/Los_Angeles localtime)
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
Drstime.rscript22 // Test a specific time (since we set America/Los_Angeles localtime)
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
Drstime.rscript22 // Test a specific time (since we set America/Los_Angeles localtime)

12345