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

/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DSamplingProfiler.java221 public static ThreadSet newThreadGroupThreadSet(ThreadGroup threadGroup) { argument
222 return new ThreadGroupThreadSet(threadGroup);
230 private final ThreadGroup threadGroup; field in class:SamplingProfiler.ThreadGroupThreadSet
234 public ThreadGroupThreadSet(ThreadGroup threadGroup) { argument
235 if (threadGroup == null) {
236 throw new NullPointerException("threadGroup == null");
238 this.threadGroup = threadGroup;
243 int count = threadGroup.activeCount();
255 threadCount = threadGroup
[all...]

Completed in 106 milliseconds