Home
last modified time | relevance | path

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

/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
DMidiBtleTimeTracker.java74 long timestampHostNanos = (mPeripheralTimeMillis * NANOS_PER_MILLI) in convertTimestampToNanotime() local
78 if (timestampHostNanos > now) { in convertTimestampToNanotime()
81 timestampHostNanos = now; in convertTimestampToNanotime()
85 if (timestampHostNanos < windowBottom) { in convertTimestampToNanotime()
88 timestampHostNanos = windowBottom; in convertTimestampToNanotime()
92 if (timestampHostNanos < mPreviousResult) { in convertTimestampToNanotime()
93 timestampHostNanos = mPreviousResult; in convertTimestampToNanotime()
95 mPreviousResult = timestampHostNanos; in convertTimestampToNanotime()
98 return timestampHostNanos; in convertTimestampToNanotime()