Searched refs:ss (Results 1 - 25 of 48) sorted by relevance

12

/dalvik/libcore/security/src/test/java/tests/security/permissions/
H A DJavaNetServerSocketTest.java102 ServerSocket ss = new ServerSocket(8888);
105 ss.close();
108 ss = new ServerSocket(8888, 55);
111 ss.close();
114 ss = new ServerSocket();
115 ss.bind(new InetSocketAddress(0));
118 ss.close();
121 ss = new ServerSocket(8888, 55, InetAddress.getLocalHost());
124 ss.close();
/dalvik/libcore/xml/src/main/java/javax/xml/transform/sax/
H A DSAXSource.java192 StreamSource ss = (StreamSource) source;
193 InputSource isource = new InputSource(ss.getSystemId());
195 isource.setByteStream(ss.getInputStream());
196 isource.setCharacterStream(ss.getReader());
197 isource.setPublicId(ss.getPublicId());
/dalvik/libcore/xml/src/main/java/org/apache/xalan/xslt/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
H A DObjectFactory.java261 SecuritySupport ss = SecuritySupport.getInstance();
265 String systemProp = ss.getSystemProperty(factoryId);
283 String javah = ss.getSystemProperty("java.home");
287 propertiesFileExists = ss.getFileExists(propertiesFile);
301 (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
314 fLastModified = ss.getLastModified(propertiesFile);
321 fis = ss.getFileInputStream(propertiesFile);
348 fis = ss.getFileInputStream(new File(propertiesFilename));
396 SecuritySupport ss = SecuritySupport.getInstance();
400 ClassLoader context = ss
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
H A DObjectFactory.java261 SecuritySupport ss = SecuritySupport.getInstance();
265 String systemProp = ss.getSystemProperty(factoryId);
283 String javah = ss.getSystemProperty("java.home");
287 propertiesFileExists = ss.getFileExists(propertiesFile);
301 (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
314 fLastModified = ss.getLastModified(propertiesFile);
321 fis = ss.getFileInputStream(propertiesFile);
348 fis = ss.getFileInputStream(new File(propertiesFilename));
396 SecuritySupport ss = SecuritySupport.getInstance();
400 ClassLoader context = ss
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DSecuritySupport.java46 SecuritySupport ss = null;
55 ss = (SecuritySupport)cons.newInstance(new Object[] { });
66 ss = new SecuritySupport12();
70 if (ss == null)
71 ss = new SecuritySupport();
72 securitySupport = ss;
H A DObjectFactory.java260 SecuritySupport ss = SecuritySupport.getInstance();
264 String systemProp = ss.getSystemProperty(factoryId);
282 String javah = ss.getSystemProperty("java.home");
286 propertiesFileExists = ss.getFileExists(propertiesFile);
300 (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
313 fLastModified = ss.getLastModified(propertiesFile);
320 fis = ss.getFileInputStream(propertiesFile);
347 fis = ss.getFileInputStream(new File(propertiesFilename));
395 SecuritySupport ss = SecuritySupport.getInstance();
399 ClassLoader context = ss
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
H A DObjectFactory.java261 SecuritySupport ss = SecuritySupport.getInstance();
265 String systemProp = ss.getSystemProperty(factoryId);
283 String javah = ss.getSystemProperty("java.home");
287 propertiesFileExists = ss.getFileExists(propertiesFile);
301 (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
314 fLastModified = ss.getLastModified(propertiesFile);
321 fis = ss.getFileInputStream(propertiesFile);
348 fis = ss.getFileInputStream(new File(propertiesFilename));
396 SecuritySupport ss = SecuritySupport.getInstance();
400 ClassLoader context = ss
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
H A DObjectFactory.java261 SecuritySupport ss = SecuritySupport.getInstance();
265 String systemProp = ss.getSystemProperty(factoryId);
283 String javah = ss.getSystemProperty("java.home");
287 propertiesFileExists = ss.getFileExists(propertiesFile);
301 (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
314 fLastModified = ss.getLastModified(propertiesFile);
321 fis = ss.getFileInputStream(propertiesFile);
348 fis = ss.getFileInputStream(new File(propertiesFilename));
396 SecuritySupport ss = SecuritySupport.getInstance();
400 ClassLoader context = ss
[all...]
/dalvik/tests/004-annotations/src/android/test/anno/
H A DAnnoArrayField.java13 short[] ss() default {};
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
H A DSSLSessionBindingListenerTest.java77 SSLSession ss = sock.getSession();
79 ss.putValue("test", sbl);
97 SSLSession ss = sock.getSession();
99 ss.putValue("test", sbl);
100 ss.removeValue("test");
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/
H A DServerSocketFactoryTest.java75 ServerSocket ss = sf.createServerSocket();
76 assertNotNull(ss);
97 ServerSocket ss = sf.createServerSocket(portNumber);
98 assertNotNull(ss);
136 ServerSocket ss = sf.createServerSocket(portNumber, 0);
137 assertNotNull(ss);
175 ServerSocket ss = sf.createServerSocket(portNumber, 0, InetAddress.getLocalHost());
176 assertNotNull(ss);
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_PortManager.java40 ServerSocket ss = new ServerSocket(0);
41 int port = ss.getLocalPort();
43 ss.close();
H A DSupport_UnmodifiableCollectionTest.java76 SortedSet<Integer> ss = new TreeSet<Integer>();
78 ss.add(it.next());
80 it = ss.iterator();
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java129 ServerSocket ss = new ServerSocket(0);
131 .createSocket("localhost", ss.getLocalPort());
132 ss.accept();
134 ss.close();
159 ServerSocket ss = ctx.getServerSocketFactory()
167 URL url = new URL("https://localhost:" + ss.getLocalPort());
172 SSLSocket peerSocket = (SSLSocket) doInteraction(connection, ss);
214 ServerSocket ss = ctx.getServerSocketFactory()
222 URL url = new URL("https://localhost:" + ss.getLocalPort());
227 doInteraction(connection, ss, NOT_FOUND_COD
[all...]
/dalvik/libcore/luni/src/test/java/java/net/
H A DURLConnectionTest.java101 ServerSocket ss = startSinkServer(total);
102 URL url = new URL("http://localhost:" + ss.getLocalPort() + "/test1");
129 final ServerSocket ss = new ServerSocket(0);
130 ss.setReuseAddress(true);
134 Socket s = ss.accept();
184 return ss;
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DUnixSocketTest.java109 ServerSocket ss = new ServerSocket(0);
110 int port = ss.getLocalPort();
111 ss.close();
/dalvik/libcore/luni/src/main/native/
H A Djava_net_NetworkInterface.cpp67 static jobject makeInterfaceAddress(JNIEnv* env, jint interfaceIndex, const char* name, sockaddr_storage* ss) { argument
80 jobject javaAddress = socketAddressToInetAddress(env, ss);
131 sockaddr_storage* ss = reinterpret_cast<sockaddr_storage*>(ifa->ifa_addr); local
132 jobject element = makeInterfaceAddress(env, interfaceIndex, ifa->ifa_name, ss);
H A Difaddrs-android.h94 sockaddr_storage* ss = new sockaddr_storage; local
95 ss->ss_family = family;
97 void* dst = &reinterpret_cast<sockaddr_in*>(ss)->sin_addr;
100 void* dst = &reinterpret_cast<sockaddr_in6*>(ss)->sin6_addr;
103 ifa_addr = reinterpret_cast<sockaddr*>(ss);
H A Djava_net_InetAddress.cpp189 struct sockaddr_storage ss; local
190 memset(&ss, 0, sizeof(ss));
195 struct sockaddr_in* sin = reinterpret_cast<sockaddr_in*>(&ss);
201 struct sockaddr_in6 *sin6 = reinterpret_cast<sockaddr_in6*>(&ss);
214 int ret = getnameinfo(reinterpret_cast<sockaddr*>(&ss), socklen,
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DFuncFormatNumb.java59 StylesheetRoot ss = templElem.getStylesheetRoot();
67 ss.error(XSLTErrorResources.ER_CURRENCY_SIGN_ILLEGAL); // currency sign not allowed
80 dfs = ss.getDecimalFormatComposed(qname);
105 dfs = ss.getDecimalFormatComposed(new QName(""));

Completed in 8992 milliseconds

12