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

1 2 3 4 5 6 7 8 910

  /dalvik/tests/048-server-socket/src/
Main.java 24 } catch (IOException ioe) {
25 System.out.println("couldn't open socket " + ioe.getMessage());
34 } catch (IOException ioe) {
35 System.out.println("couldn't close socket " + ioe.getMessage());
44 } catch (IOException ioe) {
45 System.out.println("couldn't reopen socket " + ioe.getMessage());
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERExternalParser.java 43 catch (IOException ioe)
45 throw new ASN1ParsingException("unable to get DER object", ioe);
47 catch (IllegalArgumentException ioe)
49 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);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
ForwardService.java 64 } catch (IOException ioe) {
65 Log.w(LOGTAG, "failed to start forwarder. http tests will fail.", ioe);
96 } catch (IOException ioe) {
97 Log.v(LOGTAG, "cannot read forward host from file", ioe);
102 } catch (IOException ioe) {
112 } catch (IOException ioe) {
113 Log.e(LOGTAG, "failed to resolve server address", ioe);
ForwardServer.java 72 } catch (IOException ioe) {
73 Log.v(LOGTAG, "exception while closing", ioe);
100 } catch (IOException ioe) {
101 Log.w(LOGTAG, "error while closing socket", ioe);
111 } catch (IOException ioe) {
  /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/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 251 } catch (IOException ioe) {
252 fail("Unexpected IOException " + ioe.toString());
263 } catch (IOException ioe) {
264 fail("Unexpected IOException " + ioe.toString());
273 } catch (IOException ioe) {
284 } catch (IOException ioe) {
285 fail("Unexpected IOException " + ioe.toString());
311 } catch (IOException ioe) {
312 fail("Unexpected IOException " + ioe.toString());
323 } catch (IOException ioe) {
    [all...]
  /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);
  /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) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
AdbWrapper.java 88 } catch (IOException ioe) {
89 displayError("Unable to run 'adb': %1$s.", ioe.getMessage()); //$NON-NLS-1$
130 catch (IOException ioe) {
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 83 } catch (IOException ioe) {
92 } catch (IllegalArgumentException ioe) {
116 } catch (IOException ioe) {
125 } catch (IllegalArgumentException ioe) {
149 } catch (IOException ioe) {
158 } catch (IllegalArgumentException ioe) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 107 } catch (IOException ioe) {
115 } catch (IOException ioe) {
120 } catch (IOException ioe) {
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTDbg.stg 65 @catch (IOException *ioe) {
66 [self reportError:ioe];
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 202 } catch (IOException ioe) {
204 "Failed to initialize Monitor Thread: " + ioe.getMessage());
231 } catch (IOException ioe) {
234 Log.e("ddms", ioe);
241 } catch (IOException ioe) {
242 ioe.printStackTrace();
466 } catch (IOException ioe) {
468 ioe.printStackTrace();
502 } catch (IOException ioe) {
505 throw ioe;
    [all...]
  /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);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
BinaryTempFileBody.java 64 catch (IOException ioe) {
65 throw new MessagingException("Unable to open body", ioe);
  /packages/apps/Email/src/org/apache/commons/io/
LineIterator.java 105 } catch(IOException ioe) {
107 throw new IllegalStateException(ioe.toString());
  /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...]
  /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...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMInputCapsule.java 167 } catch (IOException ioe) {
168 throw ioe;
213 } catch (IOException ioe) {
214 throw ioe;
267 } catch (IOException ioe) {
268 throw ioe;
316 } catch (IOException ioe) {
317 throw ioe;
370 } catch (IOException ioe) {
371 throw ioe;
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapFolder.java 103 } catch (IOException ioe) {
104 ioExceptionHandler(mConnection, ioe);
127 } catch (IOException ioe) {
128 throw ioExceptionHandler(mConnection, ioe);
202 } catch (IOException ioe) {
203 throw ioExceptionHandler(connection, ioe);
242 } catch (IOException ioe) {
243 throw ioExceptionHandler(connection, ioe);
329 } catch (IOException ioe) {
330 throw ioExceptionHandler(mConnection, ioe);
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 245 IOException ioe = new MalformedChunkCodingException("Invalid footer: " local
247 ExceptionUtils.initCause(ioe, e);
248 throw ioe;

Completed in 1215 milliseconds

1 2 3 4 5 6 7 8 910