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

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJSSecurityManager.java174 final boolean isDaemon, final int priority,
180 thread.setDaemon(isDaemon);
172 createThread(final Runnable runnable, final String threadName, final boolean isDaemon, final int priority, final boolean doStart) argument
/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java143 * @param isDaemon true if the associated thread should run as a daemon.
145 public Timer(boolean isDaemon) { argument
146 this("Timer-" + serialNumber(), isDaemon);
169 * @param isDaemon true if the associated thread should run as a daemon
173 public Timer(String name, boolean isDaemon) { argument
175 thread.setDaemon(isDaemon);
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java194 public final boolean isDaemon() { method in class:ThreadGroup
H A DThread.java392 this.daemon = parent.isDaemon();
1348 * Marks this thread as either a {@linkplain #isDaemon daemon} thread
1379 public final boolean isDaemon() { method in class:Thread

Completed in 136 milliseconds