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

1 2 3 4 5

  /dalvik/vm/compiler/codegen/x86/
BytecodeVisitor.cpp 415 //! reduces refCount of a virtual register
424 compileTable[index].refCount--;
426 //! reduces refCount of two virtual registers
435 compileTable[index].refCount--;
441 compileTable[index].refCount--;
566 compileTable[entry].refCount--;
592 compileTable[entry].refCount--;
752 compileTable[entry].refCount--;
828 compileTable[entry].refCount--;
870 compileTable[entry].refCount--
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPowerManager.java 33 private int refCount;
45 refCount++;
54 if (--refCount < 0) throw new RuntimeException("WakeLock under-locked");
62 return refCounted ? refCount > 0 : locked;
ShadowWifiManager.java 148 private int refCount;
156 if (++refCount >= MAX_ACTIVE_LOCKS) throw new UnsupportedOperationException("Exceeded maximum number of wifi locks");
165 if (--refCount < 0) throw new RuntimeException("WifiLock under-locked");
173 return refCounted ? refCount > 0 : locked;
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_ComponentRegistry.h 17 int refCount;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSafeRefCounted.h 58 return refCount() == 1;
61 int refCount() const
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileService.java 73 Integer refCount = sReferenceCount.get(mName);
74 if (refCount==null) {
75 refCount = 1;
77 refCount = refCount+1;
79 sReferenceCount.put(mName, refCount);
80 if (DBG) log("REFCOUNT: CREATED. INSTANCE_COUNT=" +refCount);
88 Integer refCount = sReferenceCount.get(mName);
89 if (refCount!=null)
    [all...]
  /external/chromium_org/third_party/icu/source/test/threadtest/
stringtest.cpp 128 uint32_t refCount = fSourceStrings[i].refCount();
129 if (refCount != 1) {
130 fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount);
  /external/icu4c/test/threadtest/
stringtest.cpp 128 uint32_t refCount = fSourceStrings[i].refCount();
129 if (refCount != 1) {
130 fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
MapLongVariableNames.h 40 size_t refCount;
MapLongVariableNames.cpp 30 : refCount(0)
43 gLongNameMapInstance->refCount++;
50 ASSERT(refCount > 0);
51 refCount--;
52 if (refCount == 0) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrameManager.java 97 int refCount = frame.decRefCount();
98 if (refCount == 0 && frame.hasNativeAllocation()) {
101 } else if (refCount < 0) {
CachedFrameManager.java 71 int refCount = frame.decRefCount();
72 if (refCount == 0 && frame.hasNativeAllocation()) {
77 } else if (refCount < 0) {
  /packages/apps/Camera/tests/src/com/android/camera/functional/
CameraTest.java 74 int refCount = 0;
76 if (c.get() != null) refCount++;
79 assertTrue(refCount != TEST_COUNT);
  /packages/apps/Camera2/tests/src/com/android/camera/functional/
CameraTest.java 74 int refCount = 0;
76 if (c.get() != null) refCount++;
79 assertTrue(refCount != TEST_COUNT);
  /frameworks/base/libs/hwui/
ResourceCache.cpp 36 ALOGD(" ResourceCache: mCache(%d): refCount, recycled, destroyed, type = %d, %d, %d, %d",
37 i, ref->refCount, ref->recycled, ref->destroyed, ref->resourceType);
99 ref->refCount++;
170 ref->refCount--;
171 if (ref->refCount == 0) {
221 if (ref->refCount == 0) {
243 if (ref->refCount == 0) {
262 if (ref->refCount == 0) {
281 if (ref->refCount == 0) {
305 if (ref->refCount == 0)
    [all...]
ResourceCache.h 50 ResourceReference() { refCount = 0; recycled = false; destroyed = false;}
52 refCount = 0; recycled = false; destroyed = false; resourceType = type;
55 int refCount;
  /packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
CameraTest.java 79 int refCount = 0;
81 if (c.get() != null) refCount++;
84 assertTrue(refCount != TEST_COUNT);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransactionTest.cpp 116 EXPECT_EQ(3, transaction->refCount());
122 EXPECT_EQ(3, transaction->refCount());
129 EXPECT_EQ(1, transaction->refCount());
143 EXPECT_EQ(3, transaction->refCount());
148 EXPECT_EQ(2, transaction->refCount());
154 EXPECT_EQ(1, transactionPtr->refCount());
IDBDatabaseTest.cpp 107 EXPECT_EQ(1, proxy->refCount()); // local
111 EXPECT_EQ(2, proxy->refCount()); // local and db
115 EXPECT_EQ(1, proxy->refCount()); // local
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 299 Integer refCount = mRefCounts.get(object);
300 if (refCount != null) {
301 mRefCounts.put(object, refCount + 1);
308 Integer refCount = mRefCounts.get(object);
309 if (refCount != null && refCount > 0) {
310 --refCount;
311 mRefCounts.put(object, refCount);
312 return refCount == 0;
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 211 ALOGD("Found component %s with refCount %d\n",
212 cComponentName, componentTable[refIndex].refCount);
215 if (componentTable[refIndex].refCount >= MAX_CONCURRENT_INSTANCES) {
280 so no we increment refCount */
281 componentTable[refIndex].pHandle[componentTable[refIndex].refCount] = *pHandle;
282 componentTable[refIndex].refCount += 1;
364 for (handleIndex=0; handleIndex < componentTable[refIndex].refCount; handleIndex++){
367 ALOGD("Found matching pHandle(%p) at index %d with refCount %d",
368 hComponent, refIndex, componentTable[refIndex].refCount);
369 if (componentTable[refIndex].refCount) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 50 private int refCount;
61 this.refCount++;
102 if (this.refCount > 0)
103 this.refCount--;
105 if (this.refCount == 0) {
114 * Brutally stop the event scanner. This does not wait for the refcount to
121 this.refCount = 0;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.h 119 if (!m_guardRefCount && !refCount() && this != noDocumentInstance() && !rootNodeHasTreeSharedParent()) {
153 int refCount() const;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzFace.cpp 97 ASSERT(result.get()->value->refCount() > 1);
99 if (result.get()->value->refCount() == 1)
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 131 Integer refCount = mMap.get(object);
133 if (refCount == null || refCount.intValue() == 0) {
136 if (refCount > 1) {
137 newCount = refCount - 1;
147 Integer refCount = mMap.get(object);
148 if (refCount == null) {
151 mMap.put(object, refCount + 1);
160 Integer refCount = mMap.get(object);
161 return (refCount == null) ? 0 : refCount.intValue()
    [all...]

Completed in 578 milliseconds

1 2 3 4 5