Searched refs:threadGroups (Results 1 – 5 of 5) sorted by relevance
43 private readonly threadGroups = new Map<number, TrackNode>(); property in implements52 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);
93 for (ThreadGroupReference threadGroup : threadGroups()) { in suspend()103 for (ThreadGroupReference threadGroup : threadGroups()) { in resume()137 public List<ThreadGroupReference> threadGroups() { in threadGroups() method in ThreadGroupReferenceImpl
281 ThreadGroup[] threadGroups; in findThreadGroups() local283 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()
101 List<ThreadGroupReference> threadGroups(); in threadGroups() method
101 …final List<ThreadGroup> threadGroups = Arrays.asList(threadGroup1, threadGroup2, threadGroup3, thr… in testComplexThreadGroups() local133 for (final ThreadGroup threadGroup : threadGroups) { in testComplexThreadGroups()