Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDisplayEventReceiver.java110 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
122 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in onHotplug() argument
140 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { in dispatchVsync() argument
141 onVsync(timestampNanos, builtInDisplayId, frame); in dispatchVsync()
146 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in dispatchHotplug() argument
147 onHotplug(timestampNanos, builtInDisplayId, connected); in dispatchHotplug()
DChoreographer.java796 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
820 if (timestampNanos > now) { in onVsync()
821 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f) in onVsync()
824 timestampNanos = now; in onVsync()
834 mTimestampNanos = timestampNanos; in onVsync()
838 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.java460 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) {
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java800 long timestampNanos = 0; in onEvent() local
803 timestampNanos = Long.parseLong(cooked[4]); in onEvent()
806 timestampNanos = SystemClock.elapsedRealtimeNanos(); in onEvent()
811 : DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, timestampNanos, false); in onEvent()