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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/concurrent/
TimeoutException.java 43 * not possible or desirable then {@code TimeoutException} should be
49 public class TimeoutException extends Exception {
53 * Constructs a {@code TimeoutException} with no specified detail
56 public TimeoutException() {}
59 * Constructs a {@code TimeoutException} with the specified detail
64 public TimeoutException(String message) {
Future.java 166 * @throws TimeoutException if the wait timed out
169 throws InterruptedException, ExecutionException, TimeoutException;
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
TimeoutException.java 23 public class TimeoutException extends DroidDriverException {
25 public TimeoutException(String message) {
29 public TimeoutException(Throwable cause) {
33 public TimeoutException(String message, Throwable cause) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/
TimeoutException.java 33 public class TimeoutException extends IOException {
47 public TimeoutException(boolean connectionClosed) {
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AbstractLoginActivityTestCase.java 24 import java.util.concurrent.TimeoutException;
48 protected void requestFocusOnUsername() throws TimeoutException {
61 } catch (TimeoutException ex) {
72 protected void requestFocusOnPassword() throws TimeoutException {
  /packages/apps/Camera2/src/com/android/camera/async/
BufferQueue.java 20 import java.util.concurrent.TimeoutException;
51 * @throws TimeoutException If no new value is made available within the
54 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException,
ForwardingBufferQueue.java 20 import java.util.concurrent.TimeoutException;
43 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException,
  /tools/tradefederation/core/src/com/android/tradefed/device/
StubDevice.java 32 import com.android.ddmlib.TimeoutException;
70 public void createForward(int localPort, int remotePort) throws TimeoutException,
80 throws TimeoutException, AdbCommandRejectedException,
92 int maxTimeToOutputResponse) throws TimeoutException, AdbCommandRejectedException,
177 public RawImage getScreenshot() throws TimeoutException, AdbCommandRejectedException,
187 throws TimeoutException, AdbCommandRejectedException, IOException {
211 public SyncService getSyncService() throws TimeoutException, AdbCommandRejectedException,
334 public void reboot(String into) throws TimeoutException, AdbCommandRejectedException,
343 public void removeForward(int localPort, int remotePort) throws TimeoutException,
360 public void runEventLogService(LogReceiver receiver) throws TimeoutException,
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
CheckedFuture.java 25 import java.util.concurrent.TimeoutException;
69 * timeout this method throws a normal {@link TimeoutException}.
72 * @throws TimeoutException if retrieving the result timed out.
75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
Service.java 23 import java.util.concurrent.TimeoutException;
107 * @throws TimeoutException if the service has not reached the given state within the deadline
115 void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException;
133 * @throws TimeoutException if the service has not reached the given state within the deadline
137 void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException;
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
TestUtils.java 23 import java.util.concurrent.TimeoutException;
65 * @throws TimeoutException when the no event is matched to the given condition within
70 throws TimeoutException {
76 throw new TimeoutException(message);
97 * @throws TimeoutException when the no event is matched to the given condition within
101 throws TimeoutException {
WindowFocusStealer.java 32 import java.util.concurrent.TimeoutException;
52 public void waitResult(long timeout) throws TimeoutException {
60 throw new TimeoutException();
76 * @throws TimeoutException when failed to have the window focused within {@code timeout}
79 throws TimeoutException {
99 * @throws TimeoutException when failed to establish the connection within {@code timeout}
102 throws TimeoutException {
126 throw new TimeoutException();
  /external/volley/src/main/java/com/android/volley/toolbox/
RequestFuture.java 26 import java.util.concurrent.TimeoutException;
89 } catch (TimeoutException e) {
96 throws InterruptedException, ExecutionException, TimeoutException {
101 throws InterruptedException, ExecutionException, TimeoutException {
121 throw new TimeoutException();
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
InvalidationTest.java 45 import java.util.concurrent.TimeoutException;
59 public void createDb() throws TimeoutException, InterruptedException {
67 public void closeDb() throws TimeoutException, InterruptedException {
72 private void drain() throws TimeoutException, InterruptedException {
77 public void testInvalidationOnUpdate() throws InterruptedException, TimeoutException {
90 public void testInvalidationOnDelete() throws InterruptedException, TimeoutException {
103 public void testInvalidationOnInsert() throws InterruptedException, TimeoutException {
114 public void testDontInvalidateOnLateInsert() throws InterruptedException, TimeoutException {
124 public void testMultipleTables() throws InterruptedException, TimeoutException {
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
ExecutorTestBase.java 21 import java.util.concurrent.TimeoutException;
55 } catch (TimeoutException e) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/imagedistributor/
ImageStream.java 24 import java.util.concurrent.TimeoutException;
69 * @throws TimeoutException If no new image is made available within the
74 TimeoutException,
  /frameworks/base/core/tests/coretests/src/android/service/settings/suggestions/
SuggestionServiceTest.java 35 import java.util.concurrent.TimeoutException;
59 public void canStartService() throws TimeoutException {
66 throws TimeoutException, RemoteException {
77 throws TimeoutException, RemoteException {
  /external/volley/src/test/java/com/android/volley/mock/
WaitableQueue.java 26 import java.util.concurrent.TimeoutException;
36 throws TimeoutException, InterruptedException {
39 throw new TimeoutException();
  /frameworks/base/core/java/android/os/
SynchronousResultReceiver.java 24 import java.util.concurrent.TimeoutException;
75 * @throws TimeoutException if the timeout in milliseconds expired.
77 public @NonNull Result awaitResult(long timeoutMillis) throws TimeoutException {
91 throw new TimeoutException();
  /frameworks/base/core/java/android/util/
TimedRemoteCaller.java 22 import java.util.concurrent.TimeoutException;
137 protected final T getResultTimed(int sequence) throws TimeoutException {
149 throw new TimeoutException("No response for sequence: " + sequence);
  /frameworks/support/app-toolkit/core-testing/src/main/java/androidx/arch/core/executor/testing/
CountingTaskExecutorRule.java 28 import java.util.concurrent.TimeoutException;
107 * @throws TimeoutException If tasks cannot be drained at the given time
110 throws InterruptedException, TimeoutException {
119 throw new TimeoutException("could not drain tasks");
  /frameworks/support/app-toolkit/core-testing/src/test/java/androidx/arch/core/executor/testing/
InstantTaskExecutorRuleTest.java 32 import java.util.concurrent.TimeoutException;
40 public void executeOnMain() throws ExecutionException, InterruptedException, TimeoutException {
54 public void executeOnIO() throws ExecutionException, InterruptedException, TimeoutException {
  /cts/hostsidetests/incident/apps/graphicsstatsapp/src/com/android/server/cts/device/graphicsstats/
DrawFramesActivity.java 31 import java.util.concurrent.TimeoutException;
146 public void drawFrames(final int frameCount) throws InterruptedException, TimeoutException {
150 public void waitForReady() throws InterruptedException, TimeoutException {
152 throw new TimeoutException();
156 public void drawFrames(final int[] framesToDraw) throws InterruptedException, TimeoutException {
158 throw new TimeoutException();
179 throw new TimeoutException("Drawing " + framesToDraw.length + " frames timed out after "
  /frameworks/base/services/print/java/com/android/server/print/
RemotePrintSpooler.java 56 import java.util.concurrent.TimeoutException;
172 } catch (RemoteException | TimeoutException | InterruptedException e) {
194 } catch (RemoteException | TimeoutException | InterruptedException e) {
215 } catch (RemoteException | TimeoutException | InterruptedException e) {
240 } catch (RemoteException | TimeoutException | InterruptedException e) {
263 } catch (RemoteException | TimeoutException | InterruptedException e) {
292 } catch (RemoteException | TimeoutException | InterruptedException re) {
319 } catch (RemoteException | TimeoutException | InterruptedException e) {
348 } catch (RemoteException | TimeoutException | InterruptedException e) {
378 } catch (RemoteException | TimeoutException | InterruptedException re)
    [all...]
  /external/vogar/src/vogar/target/junit/
TimeoutAndAbortRunRule.java 25 import java.util.concurrent.TimeoutException;
84 } catch (TimeoutException e) {
101 throws InterruptedException, ExecutionException, TimeoutException {

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>