Searched refs:se (Results 1 - 25 of 37) sorted by relevance

12

/libcore/ojluni/src/main/java/java/io/
H A DOutputStreamWriter.java79 private final StreamEncoder se; field in class:OutputStreamWriter
100 se = StreamEncoder.forOutputStreamWriter(out, this, charsetName);
111 se = StreamEncoder.forOutputStreamWriter(out, this, (String)null);
133 se = StreamEncoder.forOutputStreamWriter(out, this, cs);
152 se = StreamEncoder.forOutputStreamWriter(out, this, enc);
176 return se.getEncoding();
185 se.flushBuffer();
194 se.write(c);
207 se.write(cbuf, off, len);
220 se
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DSocketOutputStream.java110 } catch (SocketException se) {
111 if (se instanceof sun.net.ConnectionResetException) {
113 se = new SocketException("Connection reset");
118 throw se;
H A DDatagramSocket.java182 } catch (SocketException se) {
186 throw se;
478 } catch (SocketException se) {
480 //throw new Error("connect failed", se);
482 pendingConnectException = se;
790 } catch (SecurityException se) {
1222 } catch (SocketException se) {
1226 throw se;
H A DPlainDatagramSocketImpl.java92 } catch (SocketException se) {
94 throw se;
H A DPlainSocketImpl.java107 } catch (SocketException se) {
109 throw se;
/libcore/luni/src/main/native/
H A DIcuUtilities.cpp31 jobjectArray fromStringEnumeration(JNIEnv* env, UErrorCode& status, const char* provider, icu::StringEnumeration* se) { argument
36 int32_t count = se->count(status);
43 const icu::UnicodeString* string = se->snext(status);
/libcore/ojluni/src/main/java/javax/net/
H A DSocketFactory.java132 SocketException se = new SocketException(
134 se.initCause(uop);
135 throw se;
/libcore/ojluni/src/main/java/java/lang/
H A DStringCoding.java339 StringEncoder se = deref(encoder);
341 if ((se == null) || !(csn.equals(se.requestedCharsetName())
342 || csn.equals(se.charsetName()))) {
343 se = null;
347 se = new StringEncoder(cs, csn);
349 if (se == null)
351 set(encoder, se);
353 return se.encode(ca, off, len);
H A DThrowable.java654 for (Throwable se : getSuppressed())
655 se.printEnclosedStackTrace(s, trace, SUPPRESSED_CAPTION, "\t", dejaVu);
694 for (Throwable se : getSuppressed())
695 se.printEnclosedStackTrace(s, trace, SUPPRESSED_CAPTION,
H A DProcessBuilder.java1041 } catch (SecurityException se) {
1043 cause = se;
/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java123 for (Map.Entry<Object,Object> se : attr.entrySet()) {
124 String key = se.getKey().toString();
148 Base64.getMimeDecoder().decode((String)se.getValue()));
H A DSignatureFileVerifier.java360 for (Map.Entry<Object,Object> se : mattr.entrySet()) {
362 String key = se.getKey().toString();
369 manifestDigests.add(se.getValue());
374 Base64.getMimeDecoder().decode((String)se.getValue());
405 for (Map.Entry<Object,Object> se : mattr.entrySet()) {
406 String key = se.getKey().toString();
418 Base64.getMimeDecoder().decode((String)se.getValue());
480 for (Map.Entry<Object,Object> se : sfAttr.entrySet()) {
481 String key = se.getKey().toString();
493 Base64.getMimeDecoder().decode((String)se
[all...]
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java43 } catch(SocketException se) {
50 } catch(SocketException se) {
H A DOldDatagramSocketImplFactoryTest.java60 } catch(SocketException se) {
67 } catch(SocketException se) {
H A DOldURLStreamHandlerTest.java113 } catch(SecurityException se) {
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DJarFileFactory.java132 } catch (SecurityException se) {
143 throw se;
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DSelectorImpl.java150 } catch (SocketException se) {
151 throw new IOException("Error deregistering key", se);
/libcore/ojluni/src/main/java/java/nio/file/
H A DFileTreeWalker.java279 } catch (SecurityException se) {
282 throw se;
303 } catch (SecurityException se) {
306 throw se;
H A DFiles.java735 SecurityException se = null;
740 se = x;
755 if (se == null) {
759 throw se;
3001 SecurityException se = null;
3006 se = x;
3019 if (se != null)
3020 throw se;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DHttpsURLConnectionTest.java278 } catch (CertificateException se) {
293 } catch (CertificateException se) {
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLContextTest.java509 SSLEngine se = sslContext.createSSLEngine();
510 assertNotNull(se);
518 SSLEngine se = sslContext.createSSLEngine(null, -1);
519 assertNotNull(se);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DDatagramSocketTest.java390 } catch(SocketException se) {
403 } catch(SocketException se) {
560 } catch(SocketException se) {
843 } catch(SocketException se) {
858 } catch(SocketException se) {
885 } catch(SocketException se) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DSAXParserTest.java324 } catch(org.xml.sax.SAXException se) {
365 } catch(org.xml.sax.SAXException se) {
509 } catch(org.xml.sax.SAXException se) {
553 } catch(org.xml.sax.SAXException se) {
605 // } catch(org.xml.sax.SAXException se) {
737 } catch(org.xml.sax.SAXException se) {
778 } catch(org.xml.sax.SAXException se) {
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignatureTest.java516 MySignature se = new MySignature();
517 se.getParameter("test");
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixFileSystem.java253 } catch (SecurityException se) {

Completed in 666 milliseconds

12