HomeSort by relevance Sort by last modified time
    Searched refs:TimeoutException (Results 26 - 50 of 912) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
SystemService.java 22 import java.util.concurrent.TimeoutException;
106 throws TimeoutException {
116 throw new TimeoutException("Service " + service + " currently " + currentState
  /platform_testing/tests/jank/sysapp_wear/src/com/android/wearable/sysapp/janktests/
AppLauncherFlingJankTest.java 32 import java.util.concurrent.TimeoutException;
64 * @throws TimeoutException
66 public void openLauncher() throws RemoteException, TimeoutException {
72 * @throws TimeoutException
78 public void testFlingApps() throws TimeoutException {
QuickSettingsJankTest.java 31 import java.util.concurrent.TimeoutException;
57 private void isQuickSettingShadeLaunched() throws TimeoutException {
81 public void openPullUpQuickSettings() throws TimeoutException {
  /art/test/523-checker-can-throw-regression/src/
Main.java 27 import java.util.concurrent.TimeoutException;
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
GceFuture.java 23 import java.util.concurrent.TimeoutException;
108 } catch (TimeoutException e) {
119 throws CancellationException, ExecutionException, InterruptedException, TimeoutException {
140 throws InterruptedException, TimeoutException {
  /external/droiddriver/src/io/appium/droiddriver/
DroidDriver.java 20 import io.appium.droiddriver.exceptions.TimeoutException;
64 * @throws TimeoutException If no matching elements are found within the
93 * @throws TimeoutException If matching element does not appear within the
103 * @throws TimeoutException If matching element is not gone within the default
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationDriver.java 30 import io.appium.droiddriver.exceptions.TimeoutException;
90 } catch (java.util.concurrent.TimeoutException e) {
91 throw new TimeoutException(e);
110 throw new TimeoutException(
  /frameworks/base/core/tests/utiltests/src/android/util/
RemoteIntArray.java 31 import java.util.concurrent.TimeoutException;
43 public RemoteIntArray(int size) throws IOException, TimeoutException {
114 private void bindLocked() throws TimeoutException {
129 throw new TimeoutException("Cannot get spooler!");
  /libcore/ojluni/src/main/java/java/util/concurrent/
CyclicBarrier.java 201 TimeoutException {
258 throw new TimeoutException();
364 } catch (TimeoutException toe) {
395 * <p>If the specified waiting time elapses then {@link TimeoutException}
424 * @throws TimeoutException if the specified timeout elapses.
435 TimeoutException {
  /frameworks/base/services/core/java/com/android/server/pm/
InstantAppResolverConnection.java 47 import java.util.concurrent.TimeoutException;
95 } catch (TimeoutException e) {
103 } catch (TimeoutException e) {
131 } catch (TimeoutException e) {
141 throws ConnectionException, TimeoutException, InterruptedException {
151 private void waitForBindLocked(String token) throws TimeoutException, InterruptedException {
160 throw new TimeoutException("[" + token + "] Didn't bind to resolver in time!");
168 throws ConnectionException, TimeoutException, InterruptedException {
185 } catch (TimeoutException e) {
258 } catch (ConnectionException | TimeoutException | InterruptedException e)
    [all...]
  /external/autotest/client/site_tests/enterprise_RemoraRequisitionDisplayUsage/
enterprise_RemoraRequisitionDisplayUsage.py 8 from py_utils import TimeoutException
33 except TimeoutException:
  /external/chromium-trace/catapult/common/py_utils/py_utils/
py_utils_unittest.py 37 with self.assertRaises(py_utils.TimeoutException):
54 with self.assertRaises(py_utils.TimeoutException):
  /external/droiddriver/src/io/appium/droiddriver/base/
AbstractDroidDriver.java 24 import io.appium.droiddriver.exceptions.TimeoutException;
51 } catch (TimeoutException e) {
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractCheckedFuture.java 24 import java.util.concurrent.TimeoutException;
93 * method's standard exceptions (excluding {@link TimeoutException}, which is
102 * @throws TimeoutException {@inheritDoc}
105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
ForwardingCheckedFuture.java 23 import java.util.concurrent.TimeoutException;
50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
ForwardingFuture.java 25 import java.util.concurrent.TimeoutException;
68 throws InterruptedException, ExecutionException, TimeoutException {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractChainedListenableFutureTest.java 24 import java.util.concurrent.TimeoutException;
56 fail("The data is not yet ready, so a TimeoutException is expected");
57 } catch (TimeoutException expected) {}
SettableFutureTest.java 22 import java.util.concurrent.TimeoutException;
47 } catch (TimeoutException expected) {}
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestContentResolver.java 29 import java.util.concurrent.TimeoutException;
41 void waitForNotification(Uri uri, int count) throws InterruptedException, TimeoutException {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
CameraTestThread.java 24 import java.util.concurrent.TimeoutException;
64 throw new TimeoutException("createLooperThread: start timeout");
  /frameworks/support/wear/src/androidTest/java/androidx/wear/widget/util/
AsyncViewActions.java 29 import java.util.concurrent.TimeoutException;
56 .withCause(new TimeoutException())
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
ProfileServiceTest.java 44 import java.util.concurrent.TimeoutException;
54 private void setProfileState(Class profile, int state) throws TimeoutException {
62 private void setAllProfilesState(int state, int invocationNumber) throws TimeoutException {
119 public void testEnableDisable() throws TimeoutException {
129 public void testEnableDisableTwice() throws TimeoutException {
141 public void testEnableDisableInterleaved() throws TimeoutException {
171 public void testRepeatedEnableDisableSingly() throws TimeoutException {
197 public void testProfileServiceRegisterUnregister() throws TimeoutException {
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
FuturesUtil.java 13 import java.util.concurrent.TimeoutException;
32 * time elapses before it finishes in which case the result will contain a TimeoutException and
53 return Futures.immediateFailedFuture(new TimeoutException("Timeout expired"));
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestContentResolver.java 28 import java.util.concurrent.TimeoutException;
59 * @param timeOut Timeout in ms. TimeoutException will be thrown if this function times out.
66 throw new TimeoutException("Timed out waiting for file operations to complete.");
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestPredicate.java 26 import java.util.concurrent.TimeoutException;
67 throws InterruptedException, ExecutionException, TimeoutException {

Completed in 739 milliseconds

12 3 4 5 6 7 8 91011>>