Searched defs:created (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DServerSocket.java56 private boolean created = false; field in class:ServerSocket
102 * the actual socket implementation. Otherwise a "plain" socket is created.
146 * the actual socket implementation. Otherwise a "plain" socket is created.
258 if (!created)
307 created = true;
420 // If we're bound, the impl has been created
443 // If we're bound, the impl has been created
485 * <p>A new Socket {@code s} is created and, if there
586 if (created)
597 * itself was created vi
[all...]
H A DDatagramSocket.java78 private boolean created = false; field in class:DatagramSocket
359 created = true;
372 if (!created)
1097 * When a {@code DatagramSocket} is created the initial setting
1290 * itself was created via the {@link java.nio.channels.DatagramChannel#open
1294 * or {@code null} if this socket was not created for a channel
H A DSocket.java60 private boolean created = false; field in class:Socket
190 * the actual socket implementation. Otherwise a "plain" socket is created.
227 * actual socket implementation. Otherwise a "plain" socket is created.
354 * the actual socket implementation. Otherwise a "plain" socket is created.
395 * the actual socket implementation. Otherwise a "plain" socket is created.
470 created = false;
490 created = true;
551 if (!created)
618 if (!created)
694 created
[all...]
/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpDirEntry.java60 private java.util.Date created = null; field in class:FtpDirEntry
298 return created;
305 * @param created the Date representing the creation time for that file, or
309 public FtpDirEntry setCreated(Date created) { argument
310 this.created = created;

Completed in 365 milliseconds