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

/dalvik/libcore/luni/src/main/java/java/util/
H A DTimer.java192 * @param isDaemon daemon thread or not
194 TimerImpl(String name, boolean isDaemon) { argument
196 this.setDaemon(isDaemon);
363 * @param isDaemon true if {@code Timer}'s thread should be a daemon thread.
366 public Timer(String name, boolean isDaemon) { argument
371 this.impl = new TimerImpl(name, isDaemon);
388 * @param isDaemon {@code true} if the {@code Timer}'s thread should be a daemon thread.
390 public Timer(boolean isDaemon) { argument
391 this("Timer-" + Timer.nextId(), isDaemon);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThreadGroup.java75 private boolean isDaemon; field in class:ThreadGroup
139 if (parent.isDaemon()) {
342 * @see #isDaemon
347 if (isDaemon && !isDestroyed && numThreads == 0) {
529 public final boolean isDaemon() { method in class:ThreadGroup
530 return isDaemon;
688 * @param isDaemon the new value defining if receiver should be daemon or
694 * @see #isDaemon
697 public final void setDaemon(boolean isDaemon) { argument
699 this.isDaemon
[all...]
H A DThread.java940 public final boolean isDaemon() { method in class:Thread
1128 * @param isDaemon
1132 * @see Thread#isDaemon
1136 public final void setDaemon(boolean isDaemon) { argument
1144 daemon = isDaemon;
/dalvik/vm/
H A DDdm.c502 bool isDaemon; local
509 isDaemon = dvmGetFieldBoolean(thread->threadObj,
517 set1(buf+17, isDaemon);
H A DThread.h267 bool isDaemon; member in struct:InternalStartArgs
425 bool dvmAttachCurrentThread(const JavaVMAttachArgs* pArgs, bool isDaemon);
H A DThread.c1783 pArgs->isDaemon = true;
1858 if (dvmAttachCurrentThread(&jniArgs, pArgs->isDaemon)) {
1903 bool dvmAttachCurrentThread(const JavaVMAttachArgs* pArgs, bool isDaemon) argument
2004 if (!isDaemon)
2038 threadNameStr, getThreadPriorityFromSystem(), isDaemon);
2043 //if (isDaemon)
2096 if (!isDaemon)
3421 bool isDaemon; local
3438 isDaemon = dvmGetFieldBoolean(threadObj, gDvm.offJavaLangThread_daemon);
3471 threadName, isDaemon
[all...]
H A DJni.c3714 bool isDaemon)
3766 result = dvmAttachCurrentThread(&argsCopy, isDaemon);
3713 attachThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, bool isDaemon) argument

Completed in 127 milliseconds