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

/frameworks/base/core/java/android/view/
H A DDisplayEventReceiver.java102 * @param timestampNanos The timestamp of the pulse, in the {@link System#nanoTime()}
108 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { argument
114 * @param timestampNanos The timestamp of the event, in the {@link System#nanoTime()}
120 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { argument
138 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { argument
139 onVsync(timestampNanos, builtInDisplayId, frame);
144 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { argument
145 onHotplug(timestampNanos, builtInDisplayId, connected);
H A DChoreographer.java705 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { argument
729 if (timestampNanos > now) {
730 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f)
733 timestampNanos = now;
743 mTimestampNanos = timestampNanos;
747 mHandler.sendMessageAtTime(msg, timestampNanos / TimeUtils.NANOS_PER_MS);
/frameworks/base/core/java/android/bluetooth/le/
H A DScanResult.java49 * @param timestampNanos Device timestamp when the scan result was observed.
52 long timestampNanos) {
56 mTimestampNanos = timestampNanos;
51 ScanResult(BluetoothDevice device, ScanRecord scanRecord, int rssi, long timestampNanos) argument
/frameworks/base/services/core/java/com/android/server/display/
H A DLocalDisplayAdapter.java319 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { argument
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java691 long timestampNanos = 0;
694 timestampNanos = Long.parseLong(cooked[4]);
697 timestampNanos = SystemClock.elapsedRealtimeNanos();
702 : DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, timestampNanos, false);

Completed in 338 milliseconds