Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/location/contexthub/
H A DContextHubTransactionManager.java484 long timeoutSeconds = transaction.getTimeout(TimeUnit.SECONDS);
486 mTimeoutFuture = mTimeoutExecutor.schedule(onTimeoutFunc, timeoutSeconds,
/aosp14/frameworks/base/services/core/java/com/android/server/storage/
H A DStorageUserConnection.java364 long timeoutSeconds) throws Exception { in waitForAsync() argument
379 }).get(timeoutSeconds, TimeUnit.SECONDS); in waitForAsync() argument
/aosp14/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java792 public static void waitUntil(String message, BooleanSupplier condition, int timeoutSeconds) { in waitUntil() argument
793 final long timeout = System.currentTimeMillis() + (timeoutSeconds * 1000L); in waitUntil()
1230 public static void retryUntil(BooleanSupplier checker, String message, long timeoutSeconds) { in retryUntil() argument
1231 final long timeOut = System.currentTimeMillis() + timeoutSeconds * 1000; in retryUntil()