Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDisplayEventReceiver.java140 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
152 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in onHotplug() argument
170 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { in dispatchVsync() argument
171 onVsync(timestampNanos, builtInDisplayId, frame); in dispatchVsync()
176 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in dispatchHotplug() argument
177 onHotplug(timestampNanos, builtInDisplayId, connected); in dispatchHotplug()
DChoreographer.java849 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument
873 if (timestampNanos > now) { in onVsync()
874 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f) in onVsync()
877 timestampNanos = now; in onVsync()
887 mTimestampNanos = timestampNanos; in onVsync()
891 mHandler.sendMessageAtTime(msg, timestampNanos / TimeUtils.NANOS_PER_MS); in onVsync()
/frameworks/base/core/java/android/bluetooth/le/
DPeriodicAdvertisingReport.java52 private long timestampNanos; field in PeriodicAdvertisingReport
142 return timestampNanos; in getTimestampNanos()
147 return Objects.hash(syncHandle, txPower, rssi, dataStatus, data, timestampNanos); in hashCode()
164 (timestampNanos == other.timestampNanos); in equals()
171 ", data=" + Objects.toString(data) + ", timestampNanos=" + timestampNanos + '}'; in toString()
DScanResult.java104 long timestampNanos) { in ScanResult() argument
108 mTimestampNanos = timestampNanos; in ScanResult()
133 ScanRecord scanRecord, long timestampNanos) { in ScanResult() argument
143 mTimestampNanos = timestampNanos; in ScanResult()
/frameworks/av/media/libaaudio/tests/
Dtest_timestamps.cpp45 int64_t timestampNanos; member
90 &timestamp->timestampNanos); in timestampDataCallbackProc()
244 bool timeChanged = (timestamp->timestampNanos != (timestamp - 1)->timestampNanos); in testTimeStamps()
259 timestamp->timestampNanos, in testTimeStamps()
265 (long long) timestamp->timestampNanos, in testTimeStamps()
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java833 long timestampNanos = 0; in onEvent() local
837 timestampNanos = Long.parseLong(cooked[4]); in onEvent()
843 timestampNanos = SystemClock.elapsedRealtimeNanos(); in onEvent()
849 timestampNanos, processUid, false); in onEvent()
/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java679 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) {