Home | History | Annotate | Download | only in app

Lines Matching refs:timeOut

539          * returning the resulting activity or till the timeOut period expires.
540 * If the timeOut expires before the activity is started, return null.
542 * @param timeOut Time to wait before the activity is created.
546 public final Activity waitForActivityWithTimeout(long timeOut) {
550 wait(timeOut);
702 * Wait for an existing {@link ActivityMonitor} to be hit till the timeout
705 * returned. If the timeout expires, a null object is returned.
708 * @param timeOut The timeout value in secs.
712 public Activity waitForMonitorWithTimeout(ActivityMonitor monitor, long timeOut) {
713 Activity activity = monitor.waitForActivityWithTimeout(timeOut);
798 Log.e(TAG, "Could not sleep for long press timeout", e);