Searched refs:create (Results 76 - 100 of 109) sorted by relevance

12345

/libcore/ojluni/src/main/java/java/time/zone/
H A DIcuZoneRulesProvider.java303 protected ZoneRules create(String zoneId) { method in class:IcuZoneRulesProvider.ZoneRulesCache
/libcore/ojluni/src/main/java/sun/net/spi/
H A DDefaultProxySelector.java280 // Let's create the address, but don't resolve it
286 return SocksProxy.create(saddr, version);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileLockTable.java120 this.fileKey = FileKey.create(fd);
129 // The key isn't in the map so we try to create it atomically
H A DServerSocketChannelImpl.java110 socket = ServerSocketAdaptor.create(this);
H A DSocketAdaptor.java64 public static Socket create(SocketChannelImpl sc) { method in class:SocketAdaptor
H A DNet.java357 SocketFlow flow = SocketFlow.create();
H A DSocketChannelImpl.java179 socket = SocketAdaptor.create(this);
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DLinuxDosFileAttributeView.java102 AttributesBuilder.create(dosAttributeNames, attributes);
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java862 * Attempt to apply DST adjustments to {@code oldWallTimeSeconds} to create a wall time in
1008 OffsetInterval.create(zoneInfo, currentTransitionIndex);
1220 public static OffsetInterval create(ZoneInfo timeZone, int transitionIndex) method in class:ZoneInfo.OffsetInterval
H A DZoneInfoDB.java88 * ZoneInfo objects are worth caching because they are expensive to create.
95 protected ZoneInfo create(String id) {
/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/ojluni/src/main/java/java/net/
H A DSocket.java46 * can configure itself to create sockets appropriate to the local
98 * <UL> <LI>{@code Socket s = new Socket(Proxy.NO_PROXY);} will create
101 * will create a socket connecting through the specified SOCKS proxy
123 : sun.net.ApplicationProxy.create(proxy);
189 * factory's {@code createSocketImpl} method is called to create
225 * {@code createSocketImpl} method is called to create the
349 * factory's {@code createSocketImpl} method is called to create
389 * factory's {@code createSocketImpl} method is called to create
401 * @param stream if {@code true}, create a stream socket;
402 * otherwise, create
[all...]
H A DAbstractPlainSocketImpl.java87 protected synchronized void create(boolean stream) throws IOException { method in class:AbstractPlainSocketImpl
H A DDatagramSocket.java63 * Both cases will create a DatagramSocket able to receive broadcasts on
257 // create a datagram socket.
356 impl.create();
1314 * called to create the actual datagram socket implementation.
H A DURL.java251 * is called with the protocol string as an argument to create the
1031 Proxy p = proxy == Proxy.NO_PROXY ? Proxy.NO_PROXY : sun.net.ApplicationProxy.create(proxy);
H A DURI.java442 * impossible to create a URL instance for a scheme for which no handler is
797 * <p> The resulting URI string is then parsed in order to create the new
843 public static URI create(String str) { method in class:URI
1019 * resolve}{@code (URI.}{@link #create(String) create}{@code (str))}. </p>
1031 return resolve(URI.create(str));
/libcore/dalvik/src/main/java/dalvik/system/
H A DEmulatedStackFrame.java157 public static EmulatedStackFrame create(MethodType frameType) { method in class:EmulatedStackFrame
/libcore/luni/src/test/java/libcore/java/net/
H A DOldServerSocketTest.java331 protected void create(boolean arg0) throws IOException { method in class:OldServerSocketTest.MockSocketImpl
H A DSocketTest.java219 @Override protected void create(boolean isStream) throws IOException {
243 // We also check that SocketImpl.create was called. SocketChannelImpl.SocketAdapter
244 // subclasses Socket, and whether or not to call SocketImpl.create is the main behavioral
H A DAbstractCookiesTest.java1553 URI uri = URI.create("https://test.com");
1576 URI uri = URI.create("https://test.com");
/libcore/ojluni/src/main/java/java/time/
H A DLocalDate.java243 return create(year, month.getValue(), dayOfMonth);
263 return create(year, month, dayOfMonth);
407 private static LocalDate create(int year, int month, int dayOfMonth) { method in class:LocalDate
1690 * Combines this date with a time to create a {@code LocalDateTime}.
1704 * Combines this date with a time to create a {@code LocalDateTime}.
1722 * Combines this date with a time to create a {@code LocalDateTime}.
1741 * Combines this date with a time to create a {@code LocalDateTime}.
1760 * Combines this date with an offset time to create an {@code OffsetDateTime}.
1773 * Combines this date with the time of midnight to create a {@code LocalDateTime}
/libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java304 ftp = FtpClient.create();
451 successful, then create a MeteredStream. */
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DURITest.java637 * java.net.URI#create(java.lang.String)
641 URI myUri = URI.create("a scheme://reg/");
1547 assertNotNull(URI.create("file://C:/1.txt").parseServerAuthority());
H A DServerSocketTest.java147 fail("Was able to create two serversockets on same port");
411 // create servers socket, bind it and then validate basic state
495 // create servers socket, bind it and then validate basic state
616 // now create a socket that is not bound and validate we get the
920 protected void create(boolean arg0) throws IOException { method in class:ServerSocketTest.MockSocketImpl
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLContextTest.java559 TestSSLContext testContext = TestSSLContext.create();

Completed in 3175 milliseconds

12345