Home
last modified time | relevance | path

Searched refs:threadGroups (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/ui/src/plugins/dev.perfetto.ProcessThreadGroups/
Dindex.ts43 private readonly threadGroups = new Map<number, TrackNode>(); property in implements
52 return this.threadGroups.get(utid);
80 this.threadGroups.forEach(removeIfEmpty);
144 this.threadGroups.set(utid, threadGroup);
278 if (this.threadGroups.has(uid)) {
292 this.threadGroups.set(uid, group);
348 if (this.threadGroups.has(utid)) {
358 this.threadGroups.set(utid, group);
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DThreadGroupReferenceImpl.java93 for (ThreadGroupReference threadGroup : threadGroups()) { in suspend()
103 for (ThreadGroupReference threadGroup : threadGroups()) { in resume()
137 public List<ThreadGroupReference> threadGroups() { in threadGroups() method in ThreadGroupReferenceImpl
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DThreadUtils.java281 ThreadGroup[] threadGroups; in findThreadGroups() local
283 threadGroups = new ThreadGroup[count + count / 2 + 1]; //slightly grow the array size in findThreadGroups()
284 count = threadGroup.enumerate(threadGroups, recurse); in findThreadGroups()
286 } while (count >= threadGroups.length); in findThreadGroups()
287 …return Collections.unmodifiableCollection(Stream.of(threadGroups).filter(predicate).collect(Collec… in findThreadGroups()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DThreadGroupReference.java101 List<ThreadGroupReference> threadGroups(); in threadGroups() method
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
DThreadUtilsTest.java101 …final List<ThreadGroup> threadGroups = Arrays.asList(threadGroup1, threadGroup2, threadGroup3, thr… in testComplexThreadGroups() local
133 for (final ThreadGroup threadGroup : threadGroups) { in testComplexThreadGroups()