Searched refs:timestampNanos (Results 1 - 3 of 3) 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.java687 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { argument
711 if (timestampNanos > now) {
712 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f)
715 timestampNanos = now;
725 mTimestampNanos = timestampNanos;
729 mHandler.sendMessageAtTime(msg, timestampNanos / NANOS_PER_MS);
/frameworks/base/services/java/com/android/server/display/
H A DLocalDisplayAdapter.java192 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { argument

Completed in 50 milliseconds