HomeSort by relevance Sort by last modified time
    Searched full:refcount (Results 51 - 75 of 393) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
ext2_io.h 52 int refcount; member in struct:struct_io_channel
100 #define io_channel_bumpcount(c) ((c)->refcount++)
dupfs.c 45 fs->icache->refcount++;
freefs.c 66 if (--icache->refcount)
  /external/webkit/Source/WebCore/platform/graphics/android/
ImagesManager.cpp 81 if (!image->refCount()) {
94 m_images.size(), it->second->refCount());
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 94 // We refcount the internal HFONT so that FontPlatformData can be
118 // The create() function assumes there is already a refcount of one
  /external/webkit/Source/WebKit/android/plugins/
PluginTimer.cpp 76 // ensure that the refcount is 2 or greater since the PluginTimerList
79 if ((!m_repeat || m_unscheduled) && refCount() > 1)
  /development/host/windows/usb/api/
adb_object_handle.h 67 <handle, object> pair is deleted from the map and object's refcount is
68 decremented to match refcount increment performed when object has been
70 4. When object's refcount drops to zero, the object commits suicide by
102 If refcount drops to zero as the result of this release, the object is
  /external/chromium/net/base/
completion_callback.h 32 // other than to decrement the refcount to 0 and free the memory.
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 164 unsigned char RefCount; // Number of things using this.
167 BitCodeAbbrev() : RefCount(1) {}
169 void addRef() { ++RefCount; }
170 void dropRef() { if (--RefCount == 0) delete this; }
  /external/webkit/Source/JavaScriptCore/API/tests/
Node.h 38 unsigned refCount;
  /external/e2fsprogs/e2fsck/
e2fsck.c 91 if (ctx->refcount) {
92 ea_refcount_free(ctx->refcount);
93 ctx->refcount = 0;
  /external/qemu/block/
qcow2.h 42 /* indicate that the refcount of the referenced cluster is exactly one. */
47 #define REFCOUNT_SHIFT 1 /* refcount size is 2 bytes */
172 /* qcow2-refcount.c functions */
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 211 LOGD("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 LOGD("Found matching pHandle(%p) at index %d with refCount %d",
368 hComponent, refIndex, componentTable[refIndex].refCount);
369 if (componentTable[refIndex].refCount) {
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 130 Integer refCount = mMap.get(object);
132 if (refCount == null || refCount.intValue() == 0) {
135 if (refCount > 1) {
136 newCount = refCount - 1;
146 Integer refCount = mMap.get(object);
147 if (refCount == null) {
150 mMap.put(object, refCount + 1);
159 Integer refCount = mMap.get(object);
160 return (refCount == null) ? 0 : refCount.intValue()
    [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/opencv/cxcore/src/
cxarray.cpp 150 arr->refcount = 0;
189 arr->refcount = 0;
317 mat->refcount = 0;
452 matnd->refcount = 0;
672 arr->refcount = 0;
971 CV_CALL( mat->refcount = (int*)cvAlloc( (size_t)total_size ));
972 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN );
973 *mat->refcount = 1;
1029 CV_CALL( mat->refcount = (int*)cvAlloc( total_size +
1031 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN )
2935 int* refcount = 0; local
    [all...]
  /frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c 247 _Byref_flag_initial_value = BLOCK_IS_GC; // no refcount
285 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
304 // Tell collector to hang on this - it will bump the GC refcount version
318 // reset refcount
329 // Under GC want allocation with refcount 1 so we ask for "true" if wantsOne
336 // reset refcount
417 int refcount; local
428 refcount = shared_struct->flags & BLOCK_REFCOUNT_MASK;
429 if (refcount <= 0) {
468 // Tell GC we no longer have our own refcounts. GC will decr its refcount
    [all...]
  /external/dbus/dbus/
dbus-watch.c 42 int refcount; /**< Reference count */ member in struct:DBusWatch
91 watch->refcount = 1;
112 watch->refcount += 1;
127 _dbus_assert (watch->refcount > 0);
129 watch->refcount -= 1;
130 if (watch->refcount == 0)
dbus-dataslot.h 49 int refcount; /**< Number of uses of the slot */ member in struct:DBusAllocatedSlot
dbus-userdb.h 45 int refcount; /**< Reference count */ member in struct:DBusUserDatabase
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 117 // RefCount - Number of nodes pointing to this AliasSet plus the number of
119 unsigned RefCount : 28;
143 void addRef() { ++RefCount; }
145 assert(RefCount >= 1 && "Invalid reference count detected!");
146 if (--RefCount == 0)
225 AliasSet() : PtrList(0), PtrListEnd(&PtrList), Forward(0), RefCount(0),
  /system/core/sdcard/
sdcard.c 53 * CREAT) must bump that node's refcount
56 * kernel, you must rollback the refcount to reflect the reference the
94 __u32 refcount; member in struct:node
247 parent->refcount++;
331 fuse->root.refcount = 2;
376 if (node->refcount > 0) {
377 node->refcount--;
378 TRACE("dec_refcount %p(%s) -> %d\n", node, node->name, node->refcount);
439 TRACE("RELEASE %p (%s) rc=%d\n", node, node->name, node->refcount);
441 if (node->refcount == 0)
    [all...]
  /external/icu4c/common/
sprpimpl.h 92 int32_t refCount;
  /external/webkit/Source/JavaScriptCore/bytecompiler/
Label.h 73 int refCount() const { return m_refCount; }
LabelScope.h 59 int refCount() const { return m_refCount; }

Completed in 488 milliseconds

1 23 4 5 6 7 8 91011>>