HomeSort by relevance Sort by last modified time
    Searched refs:activeCount (Results 1 - 25 of 60) sorted by null

1 2 3

  /art/test/129-ThreadGetId/src/
Main.java 45 int activeCount = systemThreadGroup.activeCount();
46 Thread[] array = new Thread[activeCount];
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioSession.cpp 215 if (valueAt(i)->activeCount() != 0) {
224 size_t activeCount = 0;
226 if (valueAt(i)->activeCount() != 0) {
227 activeCount++;
230 return activeCount;
244 if (audioSession->activeCount() > 0 &&
262 if (activeOnly && audioSession->activeCount() == 0) {
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 79 Thread[] threads = new Thread[activeCount()];
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioSession.h 61 uint32_t activeCount() const { return mActiveCount; } ;
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 106 int numThreads = initialThreadGroup.activeCount();
117 int initialThreadCount = initialThreadGroup.activeCount();
133 int afterStartCount = initialThreadGroup.activeCount();
147 int afterDeathCount = initialThreadGroup.activeCount();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadGroupTest.java 100 // Test for method int java.lang.ThreadGroup.activeCount()
102 ThreadGroup tg = new ThreadGroup("activeCount");
111 int count = tg.activeCount();
114 count = tg.activeCount();
137 assertEquals("Destroyed child can't have children", 0, child.activeCount());
743 if (aGroup.activeCount() == 0) {
ThreadTest.java 220 * java.lang.Thread#activeCount()
223 // Test for method int java.lang.Thread.activeCount()
228 active = Thread.activeCount();
230 assertTrue("Incorrect activeCount for current group: " + active, active > 1);
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
RunUtilFuncTest.java 200 Thread[] list = new Thread[Thread.currentThread().getThreadGroup().activeCount()];
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 159 int activeCount = ContentCache.sActiveCursors.getCount(activeCursor);
160 assertEquals(1, activeCount);
  /frameworks/base/services/core/java/com/android/server/job/
JobPackageTracker.java 81 int activeCount;
191 pe.activeCount++;
265 outPe.activeCount += pe.activeCount;
341 printDuration(pw, period, pe.getActiveTime(now), pe.activeCount, "active");
407 pe.getActiveTime(now), pe.activeCount);
  /external/skia/src/pathops/
SkOpSegment.cpp 579 int activeCount = 0;
585 ++activeCount;
586 if (!foundAngle || (foundDone && activeCount & 1)) {
675 int activeCount = 0;
681 ++activeCount;
682 if (!foundAngle || (foundDone && activeCount & 1)) {
763 int activeCount = 0;
766 ++activeCount;
767 if (!foundAngle || (foundDone && activeCount & 1)) {
    [all...]
  /external/skqp/src/pathops/
SkOpSegment.cpp 579 int activeCount = 0;
585 ++activeCount;
586 if (!foundAngle || (foundDone && activeCount & 1)) {
675 int activeCount = 0;
681 ++activeCount;
682 if (!foundAngle || (foundDone && activeCount & 1)) {
763 int activeCount = 0;
766 ++activeCount;
767 if (!foundAngle || (foundDone && activeCount & 1)) {
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Thread.java     [all...]
ThreadGroup.java 347 public int activeCount() {
366 result += groupsSnapshot[i].activeCount();
406 * <p> An application might use the {@linkplain #activeCount activeCount}
    [all...]
  /frameworks/av/include/media/
VolumeShaper.h     [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp     [all...]
  /external/python/cpython2/Lib/
threading.py 30 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java     [all...]
PackageInstallerService.java 511 final int activeCount = getSessionCount(mSessions, callingUid);
512 if (activeCount >= MAX_ACTIVE_SESSIONS) {
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java     [all...]
  /build/blueprint/
context.go 733 activeCount := 0
749 activeCount++
783 if activeCount >= maxActiveCount {
819 activeCount--
823 if activeCount < maxActiveCount && len(pending) > 0 {
829 if activeCount == 0 {
    [all...]

Completed in 1867 milliseconds

1 2 3