/aosp14/frameworks/base/core/proto/android/server/ |
H A D | syncstorageengine.proto | 31 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 …]
|
H A D | powerstatsservice.proto | 139 * 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) */
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BaseAppStateDurationsTracker.java | 156 return res.getTotalDurationsSince(since, now, index); in getTotalDurationsSince() 159 return durations.getTotalDurationsSince(since, now, index); 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 189 return getTotalDurationsSince(uid, since, now, index, true /* bgOnly */); in getTotalDurationsSince() 192 long getTotalDurationsSince(int uid, long since, long now) { in getTotalDurationsSince() argument 247 long getTotalDurationsSince(long since, long now) { in getTotalDurationsSince() argument [all …]
|
H A D | AppBatteryExemptionTracker.java | 205 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()
|
H A D | BaseAppStateDurations.java | 218 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()
|
H A D | BaseAppStateTimeEvents.java | 70 int getTotalEventsSince(long since, long now, int index) { in getTotalEventsSince() argument 77 if (event.getTimestamp() >= since) { in getTotalEventsSince()
|
H A D | BaseAppStateTimeSlotEvents.java | 119 int getTotalEventsSince(long since, long now, int index) { in getTotalEventsSince() argument 124 final long start = getSlotStartTime(since); in getTotalEventsSince()
|
H A D | AppFGSTracker.java | 945 final long since = Math.max(0, now - window); in onLongRunningFgs() local 949 if (shouldExemptLocationFGS(packageName, uid, now, since)) { in onLongRunningFgs() 969 boolean shouldExemptLocationFGS(String packageName, int uid, long now, long since) { in shouldExemptLocationFGS() argument 971 .getForegroundServiceTotalDurationsSince(packageName, uid, since, now, in shouldExemptLocationFGS() 991 final long since = Math.max(0, now - getFgsLongRunningWindowSize()); in getExemptionReasonString() local 993 + ", location=" + shouldExemptLocationFGS(packageName, uid, now, since) + "}"; in getExemptionReasonString()
|
H A D | BaseAppStateEventsTracker.java | 304 long getTotalEventsSince(long since, long now) { in getTotalEventsSince() argument 305 return getTotalEventsSince(since, now, DEFAULT_INDEX); in getTotalEventsSince()
|
H A D | AppRestrictionController.java | 1881 long getForegroundServiceTotalDurationsSince(int uid, long since, long now, in getForegroundServiceTotalDurationsSince() argument 1883 return mInjector.getAppFGSTracker().getTotalDurationsSince(uid, since, now, in getForegroundServiceTotalDurationsSince() 1913 long getMediaSessionTotalDurationsSince(int uid, long since, long now) { in getMediaSessionTotalDurationsSince() argument 1922 final long since = Math.max(0, now - window); in getCompositeMediaPlaybackDurations() local 1924 getMediaSessionTotalDurationsSince(packageName, uid, since, now), in getCompositeMediaPlaybackDurations() 1925 getForegroundServiceTotalDurationsSince(packageName, uid, since, now, in getCompositeMediaPlaybackDurations() 1935 final long since = Math.max(0, now - window); in getCompositeMediaPlaybackDurations() local 1937 getMediaSessionTotalDurationsSince(uid, since, now), in getCompositeMediaPlaybackDurations() 1938 getForegroundServiceTotalDurationsSince(uid, since, now, in getCompositeMediaPlaybackDurations() 1975 ImmutableBatteryUsage getUidBatteryExemptedUsageSince(int uid, long since, long now, in getUidBatteryExemptedUsageSince() argument [all …]
|
/aosp14/frameworks/base/native/android/ |
H A D | libandroid_net.map.txt | 8 # 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.
|
/aosp14/frameworks/base/core/java/android/content/om/ |
H A D | FabricatedOverlay.java | 175 @Deprecated(since = "Please use FabricatedOverlay#setResourceValue instead") 200 @Deprecated(since = "Please use FabricatedOverlay#setResourceValue instead") 227 @Deprecated(since = "Please use FabricatedOverlay#setResourceValue instead") 250 @Deprecated(since = "Please use FabricatedOverlay#setResourceValue instead") 275 @Deprecated(since = "Please use FabricatedOverlay#setResourceValue instead")
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | physics-animation-testing.md | 2 Physics animations are notoriously difficult to test, since they’re essentially small simulations. … 7 …since 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…
|
/aosp14/frameworks/base/proto/src/ |
H A D | ipconnectivity.proto | 12 // Deprecated since version 3, replaced by top-level network_id field in 108 // Deprecated since version 3. Replaced by top level network_id. 117 // Deprecated since version 3. Replaced by ip_support field. 136 // Deprecated since version 2, to be replaced by link_layer field. 151 // Deprecated since version 3. 169 // Deprecated since version 3. 225 // Deprecated since version 3. 229 // Deprecated since version 3. 233 // Deprecated since version 3. 303 // Deprecated since version 2, to be replaced by link_layer field. [all …]
|
/aosp14/system/core/bootstat/ |
H A D | README.md | 15 --record_time_since_factory_reset Record the time since the device was reset 20 number of seconds since the system booted.
|
/aosp14/frameworks/base/core/proto/android/app/ |
H A D | alarmmanager.proto | 38 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including 41 // Alarm time in SystemClock.elapsedRealtime() (time since boot, including
|
/aosp14/frameworks/base/core/proto/android/view/inputmethod/ |
H A D | inputmethodeditortrace.proto | 61 /* required: elapsed realtime in nanos since boot of when this entry was logged */ 111 /* required: elapsed realtime in nanos since boot of when this entry was logged */ 148 /* required: elapsed realtime in nanos since boot of when this entry was logged */
|
/aosp14/frameworks/base/tests/ActivityManagerPerfTests/ |
H A D | README.txt | 17 * 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
|
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/ |
H A D | Android.bp | 27 // comment it out for now since we need use some hidden APIs
|
/aosp14/frameworks/base/proto/src/criticalevents/ |
H A D | critical_event_log.proto | 23 // Do not change the field names since this data is dumped to ANR files in textproto format. 49 // Do not change the field names since this data is dumped to ANR files in textproto format.
|
/aosp14/frameworks/base/services/core/java/com/android/server/media/projection/ |
H A D | mediaprojection.md | 16 `MediaProjectionManagerService -> ActivityManagerService` may result in deadlock, since
|
/aosp14/frameworks/base/core/proto/android/os/ |
H A D | batteryusagestats.proto | 32 // The session start timestamp in UTC milliseconds since January 1, 1970, per Date#getTime(). 36 // The session end timestamp in UTC milliseconds since January 1, 1970, per Date#getTime().
|
/aosp14/system/core/trusty/confirmationui/ |
H A D | README | 15 secure input device. But since the endpoint is currently in the HAL
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | ZenModeHelper.java | 1647 final long since = (now - mModeLogTimeMs); in emitZenMode() local 1648 if (mPreviousZenMode != mZenMode || since > MINIMUM_LOG_PERIOD_MS) { in emitZenMode() 1651 mContext, COUNTER_MODE_PREFIX + mPreviousZenMode, (int) since); in emitZenMode() 1660 final long since = (now - mRuleCountLogTime); in emitRules() local 1664 || since > MINIMUM_LOG_PERIOD_MS) { in emitRules() 1671 mRuleCountLogTime = since; in emitRules() 1678 final long since = (now - mTypeLogTimeMs); in emitDndType() local 1684 || since > MINIMUM_LOG_PERIOD_MS) { in emitDndType() 1687 mContext, COUNTER_TYPE_PREFIX + mPreviousZenType, (int) since); in emitDndType()
|
/aosp14/frameworks/base/tools/orientationplot/ |
H A D | README.txt | 22 since this script is of very little brain and will get confused otherwise. 60 of the orientations and settle into it (since it is obviously quite
|