Searched refs:newThreads (Results 1 - 2 of 2) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DSamplingProfiler.java368 Thread[] newThreads = threadSet.threads();
369 if (!Arrays.equals(currentThreads, newThreads)) {
370 updateThreadHistory(currentThreads, newThreads);
371 currentThreads = newThreads.clone();
414 private void updateThreadHistory(Thread[] oldThreads, Thread[] newThreads) { argument
418 Set<Thread> n = new HashSet<Thread>(Arrays.asList(newThreads));
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadGroupTest.java136 List<MyThread> newThreads = populateGroupsWithThreads(group, groupSize);
139 for(MyThread thread : newThreads) {
146 initialPlusNew.addAll(newThreads);
153 for(MyThread thread : newThreads) {

Completed in 66 milliseconds