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

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixDirectoryStream.java 183 IOException ioe = x.asIOException(dir); local
184 throw new DirectoryIteratorException(ioe);
203 } catch (IOException ioe) {
204 throw new DirectoryIteratorException(ioe);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToTextStream.java 225 catch(IOException ioe)
227 throw new SAXException(ioe);
250 catch(IOException ioe)
252 throw new SAXException(ioe);
386 catch(IOException ioe)
388 throw new SAXException(ioe);
426 catch(IOException ioe)
428 throw new SAXException(ioe);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RecordingProxySelector.java 45 @Override public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
49 ioe.getMessage()));
  /external/toolchain-utils/
get_common_image_version.py 77 except IOError as ioe:
79 print(ioe)
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
BinaryTempFileBody.java 65 catch (IOException ioe) {
66 throw new MessagingException("Unable to open body", ioe);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
LineIterator.java 105 } catch(IOException ioe) {
107 throw new IllegalStateException(ioe.toString());
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
BuildInfoRecorder.java 61 } catch (IOException ioe) {
64 CLog.e(ioe);
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 131 catch (IOException ioe)
133 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
180 catch (IOException ioe)
182 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
198 catch (IOException ioe)
200 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
214 catch (IOException ioe)
216 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
229 catch (IOException ioe)
231 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 77 } catch (IOException ioe) {
78 if (ioe.getMessage() != null) {
79 System.err.println("Failed: " + ioe);
141 } catch (IOException ioe) {
144 throw ioe;
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 66 catch (IOException ioe)
68 throw new EMMARuntimeException (INSTR_IO_FAILURE, ioe);
115 catch (IOException ioe)
118 throw new EMMARuntimeException (ioe);
164 catch (IOException ioe)
167 throw new EMMARuntimeException (ioe);
214 catch (IOException ioe)
217 throw new EMMARuntimeException (ioe);
264 catch (IOException ioe)
267 throw new EMMARuntimeException (ioe);
    [all...]
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
PermissionTestService.java 163 } catch (IOException ioe) {
183 } catch (IOException ioe) {
199 } catch (IOException ioe) {
206 } catch (IOException ioe) {
243 } catch (IOException ioe) {
244 Log.e(TAG, "Failed to read from network connection: " + ioe);
253 } catch (IOException ioe) {
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
ByteBuddyCrossClassLoaderSerializationSupport.java 116 } catch (IOException ioe) {
121 "The Java Standard Serialization reported an '" + ioe.getClass().getSimpleName() + "' saying :",
122 " " + ioe.getMessage()
123 ), ioe);
207 } catch (IOException ioe) {
210 " " + ioe.getMessage(),
212 ), ioe);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
StreamAllocation.java 374 IOException ioe = e.getLastConnectException(); local
377 if (ioe instanceof ProtocolException) {
383 if (ioe instanceof InterruptedIOException) {
384 return ioe instanceof SocketTimeoutException;
389 if (ioe instanceof SSLHandshakeException) {
392 if (ioe.getCause() instanceof CertificateException) {
396 if (ioe instanceof SSLPeerUnverifiedException) {
  /libcore/ojluni/src/main/java/java/io/
Console.java 317 IOError ioe = null; local
323 ioe = new IOError(x);
328 if (ioe == null)
329 ioe = new IOError(x);
331 ioe.addSuppressed(x);
333 if (ioe != null)
334 throw ioe;
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 250 IOException ioe = new MalformedChunkCodingException("Invalid footer: " local
252 ExceptionUtils.initCause(ioe, e);
253 throw ioe;
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 135 catch (IOException ioe)
137 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
424 catch (IOException ioe)
426 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
439 catch (IOException ioe)
441 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
452 catch (IOException ioe)
454 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
464 catch (IOException ioe)
466 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
    [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 120 } catch (IOException ioe) {
121 Log.e(LOG_TAG, "failed to save screen shot to file", ioe);
127 } catch (IOException ioe) {
  /libcore/ojluni/src/main/java/java/security/cert/
TrustAnchor.java 281 } catch (IOException ioe) {
283 new IllegalArgumentException(ioe.getMessage());
284 iae.initCause(ioe);
  /external/jline/src/src/main/java/jline/
UnsupportedTerminal.java 75 } catch (IOException ioe) {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 45 } catch (IOException ioe) {
46 throw new SAXException(ioe);
55 } catch (IOException ioe) {
56 throw new SAXException(ioe);
  /external/testng/src/main/java/org/testng/remote/strprotocol/
BaseMessageSender.java 140 catch (IOException ioe) {
159 catch (IOException ioe) {
272 catch(IOException ioe) {
274 ioe.printStackTrace();
  /libcore/ojluni/src/main/java/java/net/
ProxySelector.java 160 * @param ioe
164 public abstract void connectFailed(URI uri, SocketAddress sa, IOException ioe);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
ConstraintsChecker.java 157 } catch (IOException ioe) {
158 throw new CertPathValidatorException(ioe);
209 } catch (IOException ioe) {
210 throw new CertPathValidatorException(ioe);
  /packages/apps/Email/provider_src/com/android/email/mail/store/
Pop3Store.java 182 } catch (IOException ioe) {
186 ioe.getMessage());
231 } catch (IOException ioe) {
234 LogUtils.d(Logging.LOG_TAG, ioe.toString());
236 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
250 } catch (IOException ioe) {
251 statException = ioe;
326 } catch (IOException ioe) {
329 LogUtils.d(Logging.LOG_TAG, "Unable to index during getMessage " + ioe);
331 throw new MessagingException("getMessages", ioe);
    [all...]
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
LogGenerator.java 62 } catch (IOException ioe) {
63 Log.w(TAG, "Error while saving dumpsys meminfo -c: " + ioe.getMessage());
74 } catch (IOException ioe) {
75 Log.w(TAG, "Error while saving dumpsys cpuinfo : " + ioe.getMessage());

Completed in 807 milliseconds

12 3 4 5 6 7 8 91011>>