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

1 2 3 4 5

  /external/webkit/Source/JavaScriptCore/wtf/
ThreadSafeRefCounted.h 91 return refCount() == 1;
94 int refCount() const
113 int refCount;
117 refCount = m_refCount;
119 if (refCount <= 0)
CrossThreadRefCounted.h 118 if (!m_threadId && m_refCounter.refCount() == 2)
134 if (m_threadId && m_refCounter.refCount() == 1)
  /external/webkit/Source/JavaScriptCore/API/tests/
NodeList.h 32 unsigned refCount;
NodeList.c 36 nodeList->refCount = 0;
72 ++nodeList->refCount;
77 if (--nodeList->refCount == 0) {
Node.h 38 unsigned refCount;
Node.c 33 node->refCount = 0;
78 ++node->refCount;
83 if (--node->refCount == 0)
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_ComponentRegistry.h 17 int 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/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cppstruct.c 54 static int refCount = 0;
75 refCount++;
127 if (refCount)
130 refCount--;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragSource.cpp 64 return refCount();
70 return refCount();
  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.h 66 // Nodes that are 'dead' remain in the vector with refCount 0.
73 // If the value (before incrementing) was at refCount zero then we need to ref its children.
74 if (!node.refCount++)
80 ASSERT(node.refCount);
81 // If the value (after decrementing) becomes refCount zero then we need to deref its children.
82 if (!--node.refCount)
103 // When a node's refCount goes from 0 to 1, it must (logically) recursively ref all of its children, and vice versa.
DFGGraph.cpp 49 unsigned refCount = node.refCount;
50 if (!refCount)
54 --refCount;
73 printf("% 4d:\t<%c%u:%u>\t%s(", (int)nodeIndex, mustGenerate ? '!' : ' ', refCount, node.virtualRegister, dfgOpNames[op & NodeIdMask]);
  /frameworks/base/libs/hwui/
ResourceCache.h 43 ResourceReference() { refCount = 0; recycled = false; destroyed = false;}
45 refCount = 0; recycled = false; destroyed = false; resourceType = type;
48 int refCount;
ResourceCache.cpp 34 ALOGD(" ResourceCache: mCache(%d): refCount, recycled, destroyed, type = %d, %d, %d, %d",
35 i, ref->refCount, ref->recycled, ref->destroyed, ref->resourceType);
56 ref->refCount++;
86 ref->refCount--;
87 if (ref->refCount == 0) {
125 if (ref->refCount == 0) {
142 if (ref->refCount == 0) {
159 if (ref->refCount == 0) {
173 if (ref->refCount == 0) {
187 if (ref->refCount == 0)
    [all...]
  /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/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/webkit/Source/JavaScriptCore/bytecompiler/
Label.h 73 int refCount() const { return m_refCount; }
LabelScope.h 59 int refCount() const { return m_refCount; }
RegisterID.h 95 int refCount() const
  /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/icu4c/i18n/
tznames.cpp 55 int32_t refCount;
98 if (entry->refCount <= 0 && (now - entry->lastAccess) > CACHE_EXPIRATION) {
177 cacheEntry->refCount = 1;
197 cacheEntry->refCount++;
215 U_ASSERT(fTZnamesCacheEntry->refCount > 0);
217 fTZnamesCacheEntry->refCount--;
  /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;
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 54 int refCount = 0;
60 refCount++;
61 if (refCount == 1) {
66 refCount--;
67 if (refCount == 0) {
69 } else if (refCount < 0) {
70 Log.e(TAG, "-ve refcount for " + app);

Completed in 1231 milliseconds

1 2 3 4 5