Searched defs:pollForCriteria (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/
H A DCriteriaHelper.java41 public static boolean pollForCriteria(Criteria criteria, long maxTimeoutMs, method in class:CriteriaHelper
60 * @see #pollForCriteria(Criteria, long, long)
62 public static boolean pollForCriteria(Criteria criteria) method in class:CriteriaHelper
64 return pollForCriteria(criteria, DEFAULT_MAX_TIME_TO_POLL,
70 * satisfied until the specified timeout, using the pollForCriteria method.
82 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);
/external/chromium_org/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/
H A DCriteriaHelper.java41 public static boolean pollForCriteria(Criteria criteria, long maxTimeoutMs, method in class:CriteriaHelper
60 * @see #pollForCriteria(Criteria, long, long)
62 public static boolean pollForCriteria(Criteria criteria) method in class:CriteriaHelper
64 return pollForCriteria(criteria, DEFAULT_MAX_TIME_TO_POLL,
70 * satisfied until the specified timeout, using the pollForCriteria method.
82 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DCriteriaHelper.java40 public static boolean pollForCriteria(Criteria criteria, long maxTimeoutMs, method in class:CriteriaHelper
57 * @see #pollForCriteria(Criteria, long, long)
59 public static boolean pollForCriteria(Criteria criteria) throws InterruptedException { method in class:CriteriaHelper
60 return pollForCriteria(criteria, DEFAULT_MAX_TIME_TO_POLL, DEFAULT_POLLING_INTERVAL);
69 * @see #pollForCriteria(Criteria)
80 return pollForCriteria(new Criteria() {
90 * until the specified timeout, using the pollForCriteria method. If not, then the runnable
100 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);

Completed in 1793 milliseconds