/frameworks/base/core/java/android/view/ |
D | DisplayEventReceiver.java | 180 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument 193 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in onHotplug() argument 204 public void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId) { in onModeChanged() argument 238 public void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, in onFrameRateOverridesChanged() argument 258 private void dispatchVsync(long timestampNanos, long physicalDisplayId, int frame, in dispatchVsync() argument 260 onVsync(timestampNanos, physicalDisplayId, frame, in dispatchVsync() 267 private void dispatchHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in dispatchHotplug() argument 268 onHotplug(timestampNanos, physicalDisplayId, connected); in dispatchHotplug() 273 private void dispatchModeChanged(long timestampNanos, long physicalDisplayId, int modeId) { in dispatchModeChanged() argument 274 onModeChanged(timestampNanos, physicalDisplayId, modeId); in dispatchModeChanged() [all …]
|
D | Choreographer.java | 981 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument 994 if (timestampNanos > now) { in onVsync() 995 Log.w(TAG, "Frame time is " + ((timestampNanos - now) * 0.000001f) in onVsync() 998 timestampNanos = now; in onVsync() 1008 mTimestampNanos = timestampNanos; in onVsync() 1013 mHandler.sendMessageAtTime(msg, timestampNanos / TimeUtils.NANOS_PER_MS); in onVsync()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ActivityMetricsLaunchObserver.java | 119 public void onIntentStarted(@NonNull Intent intent, long timestampNanos); in onIntentStarted() argument 198 long timestampNanos); in onActivityLaunchFinished() argument 213 long timestampNanos); in onReportFullyDrawn() argument
|
/frameworks/av/media/libaaudio/tests/ |
D | test_timestamps.cpp | 45 int64_t timestampNanos; member 133 ×tamp->timestampNanos); in timestampDataCallbackProc() 299 const bool timeChanged = (timestamp->timestampNanos in testTimeStamps() 300 != (timestamp - 1)->timestampNanos); in testTimeStamps() 309 timestamp->timestampNanos, in testTimeStamps() 319 (long long) timestamp->timestampNanos, in testTimeStamps()
|
D | test_various.cpp | 116 int64_t timestampNanos = 0; in checkReleaseThenClose() local 118 ×tampFrames, ×tampNanos); in checkReleaseThenClose()
|
/frameworks/base/core/java/android/bluetooth/le/ |
D | ScanResult.java | 109 long timestampNanos) { in ScanResult() argument 113 mTimestampNanos = timestampNanos; in ScanResult() 138 ScanRecord scanRecord, long timestampNanos) { in ScanResult() argument 148 mTimestampNanos = timestampNanos; in ScanResult()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | LocalDisplayAdapter.java | 1128 void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected); 1129 void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId); 1130 void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, 1145 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { 1146 mListener.onHotplug(timestampNanos, physicalDisplayId, connected); 1150 public void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId) { 1151 mListener.onModeChanged(timestampNanos, physicalDisplayId, modeId); 1155 public void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, 1157 mListener.onFrameRateOverridesChanged(timestampNanos, physicalDisplayId, overrides); 1163 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { [all …]
|
/frameworks/base/services/profcollect/src/com/android/server/profcollect/ |
D | ProfcollectForwardingService.java | 252 public void onIntentStarted(Intent intent, long timestampNanos) { in onIntentStarted() argument 272 public void onActivityLaunchFinished(byte[] finalActivity, long timestampNanos) { in onActivityLaunchFinished() argument 277 public void onReportFullyDrawn(byte[] activity, long timestampNanos) { in onReportFullyDrawn() argument
|
/frameworks/native/services/inputflinger/tests/ |
D | InputFlingerService_test.cpp | 107 nsecs_t timestampNanos); 357 nsecs_t timestampNanos) { in setFocusedWindow() argument 361 request.timestamp = timestampNanos; in setFocusedWindow()
|
/frameworks/base/services/core/java/com/android/server/ |
D | NetworkManagementService.java | 583 final long timestampNanos; in onInterfaceClassActivityChanged() local 585 timestampNanos = SystemClock.elapsedRealtimeNanos(); in onInterfaceClassActivityChanged() 587 timestampNanos = timestamp; in onInterfaceClassActivityChanged() 590 notifyInterfaceClassActivity(label, isActive, timestampNanos, uid)); in onInterfaceClassActivityChanged()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | BatteryStatsService.java | 174 final long timestampNanos; 176 timestampNanos = SystemClock.elapsedRealtimeNanos(); 178 timestampNanos = tsNanos; 183 noteMobileRadioPowerState(powerState, timestampNanos, uid); 186 noteWifiRadioPowerState(powerState, timestampNanos, uid);
|
/frameworks/native/libs/gui/tests/ |
D | BLASTBufferQueue_test.cpp | 270 nsecs_t timestampNanos = systemTime() + presentTimeDelay; in queueBuffer() local 271 IGraphicBufferProducer::QueueBufferInput input(timestampNanos, false, HAL_DATASPACE_UNKNOWN, in queueBuffer()
|