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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERExternalParser.java 59 catch (IOException ioe)
61 throw new ASN1ParsingException("unable to get DER object", ioe);
63 catch (IllegalArgumentException ioe)
65 throw new ASN1ParsingException("unable to get DER object", ioe);
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLWriter.java 48 catch (IOException ioe)
50 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
63 catch (IOException ioe)
65 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
78 catch (IOException ioe)
80 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
93 catch (IOException ioe)
95 throw new EMMARuntimeException (IAppErrorCodes.REPORT_IO_FAILURE, ioe);
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeIterator.java 77 IOException ioe = next.ioeException(); local
78 if (ioe != null)
79 throw ioe;
86 IOException ioe = ev.ioeException(); local
87 if (ioe != null)
88 throw new UncheckedIOException(ioe);
FileTreeWalker.java 131 private final IOException ioe; field in class:FileTreeWalker.Event
133 private Event(EventType type, Path file, BasicFileAttributes attrs, IOException ioe) {
137 this.ioe = ioe;
144 Event(EventType type, Path file, IOException ioe) {
145 this(type, file, null, ioe);
161 return ioe;
220 } catch (IOException ioe) {
222 throw ioe;
277 } catch (IOException ioe) {
342 IOException ioe = null; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 88 catch (IOException ioe) {
98 catch (IOException ioe) {
107 catch (IOException ioe) {
117 catch (IOException ioe) {
127 catch (IOException ioe) {
143 catch (IOException ioe) {
154 catch (IOException ioe) {
166 catch (IOException ioe) {
181 catch (IOException ioe) {
191 catch (IOException ioe) {
    [all...]
  /external/jdiff/src/jdiff/
StreamReader.java 29 } catch (IOException ioe) {
31 ioe.printStackTrace();
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileKey.java 45 } catch (IOException ioe) {
46 throw new Error(ioe);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderTest.java 254 } catch (IOException ioe) {
255 fail("Unexpected IOException " + ioe.toString());
266 } catch (IOException ioe) {
267 fail("Unexpected IOException " + ioe.toString());
276 } catch (IOException ioe) {
287 } catch (IOException ioe) {
288 fail("Unexpected IOException " + ioe.toString());
314 } catch (IOException ioe) {
315 fail("Unexpected IOException " + ioe.toString());
326 } catch (IOException ioe) {
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MailTransport.java 119 } catch (IOException ioe) {
120 LogUtils.d(TAG, ioe.toString());
122 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
147 } catch (IOException ioe) {
148 LogUtils.d(TAG, ioe.toString());
152 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
159 } catch (IOException ioe) {
160 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
192 } catch (IOException ioe) {
193 LogUtils.d(TAG, ioe.toString())
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/util/
ServerRunner.java 52 } catch (IOException ioe) {
53 System.err.println("Couldn't start server:\n" + ioe);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/flow/
FlowService.java 89 } catch (IOException ioe) {
90 mPlatformAdapter.notifyUser(OSUOperationStatus.ProvisioningFailure, ioe.getMessage(),
116 } catch (IOException ioe) {
117 Log.e(OSUManager.TAG, "Failed to remediate: " + ioe, ioe);
130 } catch (IOException ioe) {
131 Log.e(OSUManager.TAG, "Failed to start remediation: " + ioe, ioe);
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
FileUtil.java 49 } catch (IOException ioe) {
50 Log.e("FileUtil", "exception writing date to file", ioe);
  /platform_testing/libraries/app-helpers/base/src/android/platform/test/helpers/base/listeners/
FailureTestWatcher.java 49 } catch (IOException ioe) {
50 Log.e(LOG_TAG, "Failed to capture a screenshot.", ioe);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTDbg.stg 68 catch ( IOException ioe )
70 ReportError( ioe );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTDbg.stg 72 catch ( IOException ioe )
74 ReportError( ioe );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
ASTDbg.stg 60 catch (IOException ioe) {
61 reportError(ioe);
  /frameworks/base/core/java/com/android/server/backup/
UsageStatsBackupHelper.java 43 } catch (IOException ioe) {
44 if (DEBUG) Log.e(TAG, "Failed to backup Usage Stats", ioe);
64 } catch (IOException ioe) {
65 if (DEBUG) Log.e(TAG, "Failed to restore Usage Stats", ioe);
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 55 } catch (IOException ioe) {
56 Log.w(TAG, "Unable to process log.", ioe);
57 mText.setText("Unable to process log: " + ioe);
64 } catch (IOException ioe) {
  /frameworks/base/core/java/android/printservice/
PrintDocument.java 84 } catch (IOException ioe) {
85 Log.e(LOG_TAG, "Error calling getting print job data!", ioe);
92 } catch (IOException ioe) {
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/serial/
TCKWeekFieldsSerialization.java 116 } catch (Exception ioe) {
117 fail("Unexpected exception " + ioe);
127 } catch (Exception ioe) {
138 } catch (Exception ioe) {
149 } catch (Exception ioe) {
TCKValueRangeSerialization.java 151 } catch (InvalidObjectException ioe) {
162 } catch (InvalidObjectException ioe) {
173 } catch (InvalidObjectException ioe) {
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSP.java 210 } catch (IOException ioe) {
212 ("Exception while encoding OCSPRequest", ioe);
260 } catch (IOException ioe) {
263 ioe, null, -1, BasicReason.UNDETERMINED_REVOCATION_STATUS);
268 } catch (IOException ioe) {
269 throw ioe;
275 } catch (IOException ioe) {
276 throw ioe;
284 } catch (IOException ioe) {
286 throw new CertPathValidatorException(ioe);
    [all...]
X509CertPath.java 203 } catch (IOException ioe) {
205 + ioe, ioe);
241 } catch (IOException ioe) {
243 ioe);
311 } catch (IOException ioe) {
313 "PkiPath data: " + ioe, ioe);
331 } catch (IOException ioe) {
332 throw new CertificateEncodingException(ioe.getMessage())
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
URIName.java 126 } catch (IOException ioe) {
133 } catch (IOException ioe) {
174 } catch (IOException ioe) {
175 throw new IOException("invalid URI name constraint:" + name, ioe);
387 } catch (IOException ioe) {
388 throw new UnsupportedOperationException(ioe.getMessage());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 107 } catch (IOException ioe) {
115 } catch (IOException ioe) {
120 } catch (IOException ioe) {

Completed in 2115 milliseconds

1 2 3 4 5 6 7 8 91011>>