Searched refs:daemon (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DThreadGroup.java68 boolean daemon; field in class:ThreadGroup
129 this.daemon = parent.daemon;
192 * Tests if this thread group is a daemon thread group. A
193 * daemon thread group is automatically destroyed when its last
196 * @return <code>true</code> if this thread group is a daemon thread group;
201 return daemon;
215 * Changes the daemon status of this thread group.
220 * A daemon thread group is automatically destroyed when its last
223 * @param daemon i
232 setDaemon(boolean daemon) argument
[all...]
H A DThread.java54 * may or may not also be marked as a daemon. When code running in
57 * creating thread, and is a daemon thread if and only if the
58 * creating thread is a daemon.
61 * non-daemon thread (which typically calls the method named
69 * <li>All threads that are not daemon threads have died, either by
164 /* Whether or not the thread is a daemon thread. */
165 private boolean daemon = false; field in class:Thread
410 this.daemon = parent.isDaemon();
525 Thread(ThreadGroup group, String name, int priority, boolean daemon) { argument
539 this.daemon
747 nativeCreate(Thread t, long stackSize, boolean daemon) argument
[all...]
/libcore/ojluni/src/main/native/
H A Djvm.h232 JVM_StartThread(JNIEnv *env, jobject thread, jlong stack_size, jboolean daemon);

Completed in 110 milliseconds