Searched refs:ioe (Results 1 - 25 of 213) sorted by relevance

123456789

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERExternalParser.java59 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/
H A DHTMLWriter.java48 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);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSerializerFoo.java88 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/
H A DStreamReader.java29 } catch (IOException ioe) {
31 ioe.printStackTrace();
/external/nanohttpd/core/src/main/java/fi/iki/elonen/util/
H A DServerRunner.java52 } catch (IOException ioe) {
53 System.err.println("Couldn't start server:\n" + ioe);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DASTDbg.stg68 catch ( IOException ioe )
70 ReportError( ioe );
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DASTDbg.stg72 catch ( IOException ioe )
74 ReportError( ioe );
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DASTDbg.stg60 catch (IOException ioe) {
61 reportError(ioe);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DASTDbg.stg65 @catch (IOException *ioe) {
66 [self reportError:ioe];
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToTextStream.java225 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/
H A DRecordingProxySelector.java45 @Override public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
49 ioe.getMessage()));
/external/toolchain-utils/
H A Dget_common_image_version.py76 except IOError as ioe:
78 print(ioe)
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java131 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/
H A DClassPathProcessorST.java66 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/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
H A DByteBuddyCrossClassLoaderSerializationSupport.java116 } 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/
H A DStreamAllocation.java374 IOException ioe = e.getLastConnectException();
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) {
/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedInputStream.java250 IOException ioe = new MalformedChunkCodingException("Invalid footer: "
252 ExceptionUtils.initCause(ioe, e);
253 throw ioe;
/external/emma/core/java12/com/vladium/emma/report/txt/
H A DReportGenerator.java135 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...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParserDebugger.cs30 reportError( ioe );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-swing.jar ... .URL url java.net.URLConnection conn Throwable ioe ClassLoader cl javax.swing.ImageIcon img Throwable e ...
/external/jline/src/src/main/java/jline/
H A DUnsupportedTerminal.java75 } catch (IOException ioe) {
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java45 } 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/
H A DBaseMessageSender.java140 catch (IOException ioe) {
159 catch (IOException ioe) {
272 catch(IOException ioe) {
274 ioe.printStackTrace();
/external/emma/core/java12/com/vladium/emma/data/
H A DmergeCommand.java103 catch (IOException ioe)
105 throw new EMMARuntimeException (IAppErrorCodes.ARGS_IO_FAILURE, ioe);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DAbstractData.java125 } catch (IOException ioe) {
126 throw new RuntimeException(ioe); // COV_NF_LINE

Completed in 694 milliseconds

123456789