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

/libcore/ojluni/src/main/java/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);
/libcore/ojluni/src/main/java/java/lang/
H A DThreadGroup.java200 public final boolean isDaemon() { method in class:ThreadGroup
H A DThread.java410 this.daemon = parent.isDaemon();
1350 * Marks this thread as either a {@linkplain #isDaemon daemon} thread
1381 public final boolean isDaemon() { method in class:Thread

Completed in 74 milliseconds