Home
last modified time | relevance | path

Searched refs:timestampNanos (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DDisplayEventReceiver.java108 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
120 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in onHotplug() argument
138 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { in dispatchVsync() argument
139 onVsync(timestampNanos, builtInDisplayId, frame); in dispatchVsync()
144 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in dispatchHotplug() argument
145 onHotplug(timestampNanos, builtInDisplayId, connected); in dispatchHotplug()
DChoreographer.java705 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
729 if (timestampNanos > now) { in onVsync()
730 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f) in onVsync()
733 timestampNanos = now; in onVsync()
743 mTimestampNanos = timestampNanos; in onVsync()
747 mHandler.sendMessageAtTime(msg, timestampNanos / TimeUtils.NANOS_PER_MS); in onVsync()
/frameworks/base/core/java/android/bluetooth/le/
DScanResult.java52 long timestampNanos) { in ScanResult() argument
56 mTimestampNanos = timestampNanos; in ScanResult()
/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java319 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) {
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java691 long timestampNanos = 0; in onEvent() local
694 timestampNanos = Long.parseLong(cooked[4]); in onEvent()
697 timestampNanos = SystemClock.elapsedRealtimeNanos(); in onEvent()
702 : DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, timestampNanos, false); in onEvent()