HomeSort by relevance Sort by last modified time
    Searched refs:NANOS_PER_MILLI (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 28 private static final int NANOS_PER_MILLI = 1000000;
100 if (timeoutMillis == 0 || (timeoutMillis > Long.MAX_VALUE / NANOS_PER_MILLI)) {
108 long nanosToWait = timeoutMillis * NANOS_PER_MILLI;
123 timeoutMillis = nanosRemaining / NANOS_PER_MILLI;
124 timeoutNanos = (int) (nanosRemaining - timeoutMillis * NANOS_PER_MILLI);
  /libcore/libart/src/main/java/java/lang/
Thread.java 60 private static final int NANOS_PER_MILLI = 1000000;
756 if (millis < 0 || nanos < 0 || nanos >= NANOS_PER_MILLI) {
761 boolean overflow = millis >= (Long.MAX_VALUE - nanos) / NANOS_PER_MILLI;
774 long nanosToWait = millis * NANOS_PER_MILLI + nanos;
788 millis = nanosRemaining / NANOS_PER_MILLI;
789 nanos = (int) (nanosRemaining - millis * NANOS_PER_MILLI);
    [all...]
Daemons.java 34 private static final int NANOS_PER_MILLI = 1000 * 1000;
35 private static final int NANOS_PER_SECOND = NANOS_PER_MILLI * 1000;
246 long sleepMills = sleepNanos / NANOS_PER_MILLI;
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 60 private static final int NANOS_PER_MILLI = 1000000;
781 if (millis < 0 || nanos < 0 || nanos >= NANOS_PER_MILLI) {
786 boolean overflow = millis >= (Long.MAX_VALUE - nanos) / NANOS_PER_MILLI;
804 long nanosToWait = millis * NANOS_PER_MILLI + nanos;
818 millis = nanosRemaining / NANOS_PER_MILLI;
819 nanos = (int) (nanosRemaining - millis * NANOS_PER_MILLI);
    [all...]
Daemons.java 34 private static final int NANOS_PER_MILLI = 1000 * 1000;
35 private static final int NANOS_PER_SECOND = NANOS_PER_MILLI * 1000;
243 long sleepMills = sleepNanos / NANOS_PER_MILLI;
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 120 private static final long NANOS_PER_MILLI = 1000000L;
    [all...]

Completed in 67 milliseconds