Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/location/
DContextHubTransactionManager.java426 long timeoutSeconds = transaction.getTimeout(TimeUnit.SECONDS);
427 mTimeoutFuture = mTimeoutExecutor.schedule(onTimeoutFunc, timeoutSeconds,
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
DShortcutManagerTestUtils.java728 public static void waitUntil(String message, BooleanSupplier condition, int timeoutSeconds) { in waitUntil() argument
729 final long timeout = System.currentTimeMillis() + (timeoutSeconds * 1000L); in waitUntil()
1166 public static void retryUntil(BooleanSupplier checker, String message, long timeoutSeconds) { in retryUntil() argument
1167 final long timeOut = System.currentTimeMillis() + timeoutSeconds * 1000; in retryUntil()