Home | History | Annotate | Download | only in dalvik

Lines Matching defs:amount

126         /** whether {@link #amount} is milliseconds to wait in an
131 /** amount to wait (see above) */
132 private final long amount;
154 this.amount = absolute ? parkMillis : parkMillis * 1000000;
159 long amount = this.amount;
163 UNSAFE.park(true, start + amount);
165 UNSAFE.park(false, amount);
181 * @param maxWaitMillis the maximum amount of time to
231 * specified amount of time and then unparks an indicated thread.