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

/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DMyThreadFactory.java31 static boolean created(Thread t) { method in class:MyThreadFactory
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequestServicer.java55 private static int created = 0; field in class:RequestServicer
62 created++;
63 if ((created % 50) == 0) {
65 created = 0;
H A DRequestHandler.java61 private static int created = 0; field in class:RequestHandler
68 created++;
69 if ((created % 50) == 0) {
71 created = 0;
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletClassLoader.java655 // to the newly created ThreadGroup, and wait for the
669 while (!creatorThread.created) {
859 volatile boolean created = false; field in class:AppContextCreator
867 created = true;
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocket.java73 private boolean created = false; field in class:DatagramSocket
323 created = true;
336 if (!created)
1023 * When a <tt>DatagramSocket</tt> is created the initial setting
1209 * itself was created via the {@link java.nio.channels.DatagramChannel#open
1213 * or <tt>null</tt> if this socket was not created for a channel
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.
256 if (!created)
306 created = true;
413 // If we're bound, the impl has been created
436 // If we're bound, the impl has been created
468 * <p>A new Socket <code>s</code> is created and, if there
569 if (created)
580 * itself was created vi
[all...]
H A DSocket.java59 private boolean created = false; field in class:Socket
181 * the actual socket implementation. Otherwise a "plain" socket is created.
219 * actual socket implementation. Otherwise a "plain" socket is created.
338 * the actual socket implementation. Otherwise a "plain" socket is created.
380 * the actual socket implementation. Otherwise a "plain" socket is created.
445 created = true;
509 if (!created)
576 if (!created)
645 created = true;
650 created
[all...]
/openjdk7/jdk/src/share/classes/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;
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java413 * If the origin of a Font is a created font then this attribute
461 * If required, it will be created from the 'standard'
582 boolean created, Font2DHandle handle) {
584 this.createdFont = created;
585 /* Fonts created from a stream will use the same font2D instance
590 * CompositeFonts can only be marked as "created" if they are used
594 if (created) {
610 /* Font2D instances created by this method track their font file
623 * Fonts created from a stream will use the same font2D instance as the
624 * parent. They can be distinguished because the "created" argumen
581 Font(String name, int style, float sizePts, boolean created, Font2DHandle handle) argument
645 Font(AttributeValues values, String oldName, int oldStyle, boolean created, Font2DHandle handle) argument
[all...]

Completed in 47 milliseconds