HomeSort by relevance Sort by last modified time
    Searched refs:isDaemon (Results 1 - 24 of 24) sorted by null

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ThreadInfo.java 52 void updateThread(int status, int tid, int utime, int stime, boolean isDaemon) {
58 mIsDaemon = isDaemon;
119 public boolean isDaemon() {
HandleThread.java 162 boolean isDaemon = false;
170 isDaemon = (data.get() != 0);
179 threadInfo.updateThread(status, tid, utime, stime, isDaemon);
  /libcore/luni/src/main/java/java/lang/
ThreadGroup.java 62 private boolean isDaemon;
101 if (parent.isDaemon()) {
240 * @see #isDaemon
245 if (isDaemon && !isDestroyed && !threads.iterator().hasNext()) {
433 public final boolean isDaemon() {
434 return isDaemon;
557 * @param isDaemon the new value
558 * @see #isDaemon
561 public final void setDaemon(boolean isDaemon) {
562 this.isDaemon = isDaemon
    [all...]
Thread.java 722 public final boolean isDaemon() {
874 * @param isDaemon
876 * @see Thread#isDaemon
878 public final void setDaemon(boolean isDaemon) {
884 daemon = isDaemon;
    [all...]
  /libcore/luni/src/main/java/java/util/
Timer.java 187 * @param isDaemon daemon thread or not
189 TimerImpl(String name, boolean isDaemon) {
191 this.setDaemon(isDaemon);
360 * @param isDaemon true if {@code Timer}'s thread should be a daemon thread.
363 public Timer(String name, boolean isDaemon) {
367 this.impl = new TimerImpl(name, isDaemon);
384 * @param isDaemon {@code true} if the {@code Timer}'s thread should be a daemon thread.
386 public Timer(boolean isDaemon) {
387 this("Timer-" + Timer.nextId(), isDaemon);