Searched defs:create (Results 1 - 25 of 28) sorted by relevance

12

/libcore/luni/src/main/java/java/net/
H A DPlainServerSocketImpl.java37 protected void create(boolean isStreaming) throws IOException { method in class:PlainServerSocketImpl
38 super.create(isStreaming);
H A DDatagramSocketImpl.java71 protected abstract void create() throws SocketException; method in class:DatagramSocketImpl
H A DSocketImpl.java133 protected abstract void create(boolean isStreaming) throws IOException; method in class:SocketImpl
H A DPlainDatagramSocketImpl.java90 public void create() throws SocketException { method in class:PlainDatagramSocketImpl
H A DPlainSocketImpl.java199 protected void create(boolean streaming) throws IOException { method in class:PlainSocketImpl
H A DSocket.java67 * Example that will create a socket connection through a {@code SOCKS}
560 impl.create(streaming);
640 private void checkOpenAndCreate(boolean create) throws SocketException { argument
644 if (!create) {
651 * return directly to fix a possible bug, if !create, should return
664 impl.create(true);
836 // options on create
837 // impl.create(true);
H A DURI.java723 public static URI create(String uri) { method in class:URI
1234 * the given string to create the new URI instance which has to
1239 return resolve(create(relative));
/libcore/luni/src/main/java/libcore/icu/
H A DTransliterator.java29 peer = create(id);
53 private static native long create(String id); method in class:Transliterator
H A DAlphabeticIndex.java81 peer = create(locale.toString());
161 private static native long create(String locale); method in class:AlphabeticIndex
H A DTimeZoneNames.java67 @Override protected String[][] create(Locale locale) { method in class:TimeZoneNames.ZoneStringsCache
/libcore/luni/src/main/java/libcore/util/
H A DBasicLruCache.java40 * created by {@code #create}. If a value was returned, it is moved to the
54 result = create(key);
105 protected V create(K key) { method in class:BasicLruCache
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestSSLSessions.java65 public static final TestSSLSessions create() { method in class:TestSSLSessions
70 TestSSLSocketPair s = TestSSLSocketPair.create();
H A DTestSSLSocketPair.java58 public static TestSSLSocketPair create () { method in class:TestSSLSocketPair
59 TestSSLContext c = TestSSLContext.create();
H A DTestSSLEnginePair.java45 public static TestSSLEnginePair create(Hooks hooks) throws IOException { method in class:TestSSLEnginePair
46 return create(TestSSLContext.create(), hooks);
49 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException { method in class:TestSSLEnginePair
H A DTestSSLContext.java135 public static TestSSLContext create() { method in class:TestSSLContext
136 return create(TestKeyStore.getClient(),
143 public static TestSSLContext create(TestKeyStore client, TestKeyStore server) { method in class:TestSSLContext
145 return create(client, server, provider, provider);
147 public static TestSSLContext create(TestKeyStore client, TestKeyStore server, method in class:TestSSLContext
154 return create(client.keyStore, client.storePassword,
167 public static TestSSLContext create(KeyStore clientKeyStore, char[] clientStorePassword, method in class:TestSSLContext
/libcore/libdvm/src/main/java/java/lang/
H A DVMThread.java27 native static void create(Thread t, long stackSize); method in class:VMThread
43 VMThread.create(thread, stackSize);
H A DThread.java194 create(null, null, null, 0);
210 create(null, runnable, null, 0);
232 create(null, runnable, threadName, 0);
252 create(null, null, threadName, 0);
272 create(group, runnable, null, 0);
296 create(group, runnable, threadName, 0);
317 create(group, null, threadName, 0);
345 create(group, runnable, threadName, stackSize);
349 * Package-scope method invoked by Dalvik VM to create "internal"
397 private void create(ThreadGrou method in class:Thread
[all...]
/libcore/luni/src/main/java/libcore/net/
H A DRawSocket.java45 private static native void create(FileDescriptor fd, short method in class:RawSocket
67 create(fd, mProtocolType, mInterfaceName);
/libcore/luni/src/test/java/libcore/java/net/
H A DOldDatagramSocketImplFactoryTest.java142 protected void create() throws SocketException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
H A DOldSocketImplFactoryTest.java149 protected void create(boolean arg0) throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
H A DOldServerSocketTest.java340 protected void create(boolean arg0) throws IOException { method in class:OldServerSocketTest.MockSocketImpl
H A DOldDatagramSocketTest.java107 fail("Could not create DatagramSocket : " + e.getMessage());
144 fail("Could not create DatagramSocket : " + e.getMessage());
194 fail("Could not create DatagramSocket : " + e.getMessage());
1070 protected void create() throws SocketException {}
1192 fail("Could not create DatagramSocket : " + e.getMessage());
1252 // now create a socket that is not bound and then bind it
1737 // now create one that is not connected and validate that we get the
2037 protected void create() throws SocketException { method in class:OldDatagramSocketTest.TestDatagramSocketImpl
/libcore/luni/src/test/java/libcore/xml/
H A DXsltXPathConformanceTestSuite.java174 result.addTest(suite.create(base, testCaseElement));
184 private TestCase create(File base, Element testCaseElement) { method in class:XsltXPathConformanceTestSuite
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java185 public String getPrefix(String namespace, boolean create) { argument
187 return getPrefix(namespace, false, create);
197 boolean create)
219 if (!create)
194 getPrefix( String namespace, boolean includeDefault, boolean create) argument
/libcore/libart/src/main/java/java/lang/
H A DThread.java199 create(null, null, null, 0);
215 create(null, runnable, null, 0);
237 create(null, runnable, threadName, 0);
257 create(null, null, threadName, 0);
277 create(group, runnable, null, 0);
301 create(group, runnable, threadName, 0);
322 create(group, null, threadName, 0);
350 create(group, runnable, threadName, stackSize);
354 * Package-scope method invoked by Dalvik VM to create "internal"
402 private void create(ThreadGrou method in class:Thread
[all...]

Completed in 277 milliseconds

12