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

1 2 3

  /libcore/luni/src/main/java/java/util/concurrent/
TimeoutException.java 14 * not possible or desirable then <tt>TimeoutException</tt> should be
20 public class TimeoutException extends Exception {
24 * Constructs a <tt>TimeoutException</tt> with no specified detail
27 public TimeoutException() {}
30 * Constructs a <tt>TimeoutException</tt> with the specified detail
35 public TimeoutException(String message) {
Future.java 138 * @throws TimeoutException if the wait timed out
141 throws InterruptedException, ExecutionException, TimeoutException;
CyclicBarrier.java 166 TimeoutException {
223 throw new TimeoutException();
329 } catch (TimeoutException toe) {
360 * <p>If the specified waiting time elapses then {@link TimeoutException}
389 * @throws TimeoutException if the specified timeout elapses
399 TimeoutException {
AbstractExecutorService.java 116 throws InterruptedException, ExecutionException, TimeoutException {
157 throw new TimeoutException();
193 } catch (TimeoutException cannotHappen) {
201 throws InterruptedException, ExecutionException, TimeoutException {
269 } catch (TimeoutException toe) {
FutureTask.java 90 throws InterruptedException, ExecutionException, TimeoutException {
228 V innerGet(long nanosTimeout) throws InterruptedException, ExecutionException, TimeoutException {
230 throw new TimeoutException();
ExecutorService.java 331 * @throws TimeoutException if the given timeout elapses before
339 throws InterruptedException, ExecutionException, TimeoutException;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
TimeoutException.java 25 public class TimeoutException extends IOException {
IDevice.java 180 * @throws TimeoutException in case of timeout on the connection.
185 throws TimeoutException, AdbCommandRejectedException, IOException;
197 * @throws TimeoutException in case of timeout on the connection.
201 public RawImage getScreenshot() throws TimeoutException, AdbCommandRejectedException,
212 * @throws TimeoutException in case of timeout on the connection.
222 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
244 * @throws TimeoutException in case of timeout on the connection when sending the command.
254 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
261 * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the
268 throws TimeoutException, AdbCommandRejectedException, IOException
    [all...]
Device.java 252 throws TimeoutException, AdbCommandRejectedException, IOException {
270 throws TimeoutException, AdbCommandRejectedException, IOException {
275 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
283 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
290 throws TimeoutException, AdbCommandRejectedException, IOException {
295 throws TimeoutException, AdbCommandRejectedException, IOException {
300 throws TimeoutException, AdbCommandRejectedException, IOException {
305 throws TimeoutException, AdbCommandRejectedException, IOException {
411 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
420 throws IOException, AdbCommandRejectedException, TimeoutException {
    [all...]
AdbHelper.java 69 * @throws TimeoutException in case of timeout on the connection.
75 throws IOException, TimeoutException, AdbCommandRejectedException {
97 } catch (TimeoutException e) {
116 * @throws TimeoutException in case of timeout on the connection.
122 throws TimeoutException, AdbCommandRejectedException, IOException {
144 } catch (TimeoutException e) {
207 * @throws TimeoutException in case of timeout on the connection.
211 throws TimeoutException, IOException {
264 * @throws TimeoutException in case of timeout on the connection.
269 throws TimeoutException, AdbCommandRejectedException, IOException
    [all...]
DeviceMonitor.java 199 } catch (TimeoutException ioe) {
209 if (e instanceof TimeoutException) {
258 private boolean sendDeviceListMonitoringRequest() throws TimeoutException, IOException {
449 } catch (TimeoutException e) {
472 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
522 } catch (TimeoutException e) {
664 throws TimeoutException, AdbCommandRejectedException, IOException {
681 } catch (TimeoutException e) {
793 } catch (TimeoutException e) {
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
CheckedFuture.java 23 import java.util.concurrent.TimeoutException;
62 * timeout this method throws a normal {@link TimeoutException}.
65 * @throws TimeoutException if retrieving the result timed out.
69 throws TimeoutException, E;
UninterruptibleFuture.java 22 import java.util.concurrent.TimeoutException;
38 throws ExecutionException, TimeoutException;
ForwardingFuture.java 24 import java.util.concurrent.TimeoutException;
63 throws InterruptedException, ExecutionException, TimeoutException {
AbstractCheckedFuture.java 23 import java.util.concurrent.TimeoutException;
76 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, E {
108 ExecutionException, TimeoutException {
AbstractFuture.java 23 import java.util.concurrent.TimeoutException;
60 TimeoutException, ExecutionException {
213 * {@link TimeoutException} if the timer expires, otherwise behaves like
216 V get(long nanos) throws TimeoutException, CancellationException,
221 throw new TimeoutException("Timeout waiting for task.");
SimpleTimeLimiter.java 35 import java.util.concurrent.TimeoutException;
135 } catch (TimeoutException e) {
  /frameworks/base/core/java/android/accounts/
AccountManagerFuture.java 21 import java.util.concurrent.TimeoutException;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
IRemoteAndroidTestRunner.java 22 import com.android.ddmlib.TimeoutException;
194 * @throws TimeoutException in case of a timeout on the connection.
203 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
210 * @throws TimeoutException in case of a timeout on the connection.
219 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
RemoteAndroidTestRunner.java 24 import com.android.ddmlib.TimeoutException;
218 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
227 throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 22 import com.android.ddmlib.TimeoutException;
83 } catch (TimeoutException e) {
  /cts/tests/appsecurity-tests/src/com/android/cts/appsecurity/
AppSecurityTests.java 30 import com.android.ddmlib.TimeoutException;
142 public void testAppFailAccessPrivateData() throws InstallException, TimeoutException,
203 public void testInstrumentationDiffCert() throws InstallException, TimeoutException,
235 public void testPermissionDiffCert() throws InstallException, TimeoutException,
275 * @throws TimeoutException in case of a timeout on the connection.
282 ShellCommandUnresponsiveException, IOException, TimeoutException {
294 TimeoutException {
303 * @throws TimeoutException in case of a timeout on the connection.
311 ShellCommandUnresponsiveException, TimeoutException {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
DeviceBridge.java 24 import com.android.ddmlib.TimeoutException;
128 } catch (TimeoutException e) {
150 } catch (TimeoutException e) {
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 46 import java.util.concurrent.TimeoutException;
651 protected void waitForDownloadOrTimeout_skipNotification(long id) throws TimeoutException,
663 protected void waitForDownloadOrTimeout(long id) throws TimeoutException,
679 throws TimeoutException, InterruptedException {
692 protected void waitForDownloadsOrTimeout(long poll, long timeoutMillis) throws TimeoutException,
711 } catch (TimeoutException e) {
726 * @throws TimeoutException if timed out waiting for SD card to mount
729 String timedOutMessage) throws TimeoutException {
745 throw new TimeoutException(timedOutMessage);
758 throws TimeoutException {
    [all...]

Completed in 412 milliseconds

1 2 3