uptime

abstract fun uptime(): Duration

On JVMs this should return System.nanoTime as a Duration.

On Android VMs, this should return either System.nanoTime on Android 11 (when the method was annotated with @CriticalNative) or android.os.SystemClock.uptimeMillis() before Android 11.