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

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/hang_monitor/
hung_window_detector.h 77 // not RefCount this pointer and it is assumed that the pointer will be valid
  /external/dbus/bus/
policy.h 48 int refcount; member in struct:BusPolicyRule
bus.c 45 int refcount; member in struct:BusContext
709 context->refcount = 1;
1024 _dbus_assert (context->refcount > 0);
1025 context->refcount += 1;
1033 _dbus_assert (context->refcount > 0);
1034 context->refcount -= 1;
1036 if (context->refcount == 0)
    [all...]
  /external/dbus/dbus/
dbus-server-protected.h 57 DBusAtomic refcount; /**< Reference count. */ member in struct:DBusServer
dbus-keyring.c 113 int refcount; /**< Reference count */ member in struct:DBusKeyring
140 keyring->refcount = 1;
671 keyring->refcount += 1;
677 * Decrements refcount and finalizes if it reaches
685 keyring->refcount -= 1;
687 if (keyring->refcount == 0)
dbus-connection.c 219 DBusAtomic refcount; /**< Reference count */ member in struct:DBusMessageFilter
247 DBusAtomic refcount; /**< Reference count. */ member in struct:DBusConnection
344 _dbus_assert (filter->refcount.value > 0);
345 _dbus_atomic_inc (&filter->refcount);
353 _dbus_assert (filter->refcount.value > 0);
355 if (_dbus_atomic_dec (&filter->refcount) == 1)
405 * Does not take over refcount of the message.
457 * taking ownership of the link and the message's current refcount.
648 /** Function to be called in protected_change_watch() with refcount held */
651 /** Function to be called in protected_change_watch() with refcount held *
    [all...]
dbus-spawn.c 193 int refcount; /**< Reference count */ member in struct:DBusBabysitter
224 sitter->refcount = 1;
253 _dbus_assert (sitter->refcount > 0);
255 sitter->refcount += 1;
272 _dbus_assert (sitter->refcount > 0);
274 sitter->refcount -= 1;
275 if (sitter->refcount == 0)
    [all...]
  /external/e2fsprogs/debugfs/
util.o 
  /external/llvm/lib/VMCore/
Attributes.cpp 123 sys::cas_flag RefCount;
134 RefCount = 0;
139 ++RefCount;
145 sys::cas_flag new_val = --RefCount;
  /external/opencv/cxcore/include/
cxcore.h 157 if( mat->refcount != NULL && --*mat->refcount == 0 )
158 cvFree( &mat->refcount );
159 mat->refcount = NULL;
165 if( mat->refcount != NULL && --*mat->refcount == 0 )
166 cvFree( &mat->refcount );
167 mat->refcount = NULL;
174 int refcount = 0; local
178 if( mat->refcount != NULL
    [all...]
  /external/qemu/android/skin/
surface.c 26 int refcount; member in struct:SkinSurface
51 surface->refcount += 1;
60 if (--surf->refcount <= 0)
141 s->refcount = 1;
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 488 : refCount(0)
493 unsigned refCount;
520 ++array->refCount;
526 if (--array->refCount == 0) {
  /external/webkit/Source/WebCore/dom/
ContainerNodeAlgorithms.h 126 if (!n->refCount()) {
  /external/webkit/Source/WebCore/fileapi/
FileThread.cpp 107 LOG(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
  /external/webkit/Source/WebCore/platform/graphics/android/
ClassTracker.cpp 93 XLOG("[%d/%d] layer %x (%.2f, %.2f) of type %d, refcount(%d) has texture %x has image ref %x (%x) root: %x parent: %x",
  /frameworks/base/core/java/android/net/
LinkSocketNotifier.java 44 * If found, grab a refcount on the link so it doesn't go away and send notification
  /frameworks/base/include/media/stagefright/foundation/
AMessage.h 88 // their refcount incremented.
  /frameworks/base/media/libstagefright/
MediaBuffer.cpp 186 int MediaBuffer::refcount() const { function in class:android::MediaBuffer
  /external/kernel-headers/original/linux/
relay.h 43 struct kref kref; /* channel buffer refcount */
63 struct kref kref; /* channel refcount */
  /external/qemu/block/
qcow2.c 914 /* count how many refcount blocks needed */
925 /* Number of clusters used for the refcount table */
932 /* Number of refcount blocks needed for the image */
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 153 //Resets the refCount for this particular frame
157 void setFrameRefCount(void* frameBuf, CameraFrame::FrameType frameType, int refCount);
  /external/clang/docs/
Block-ABI-Apple.txt 279 int flags; //refcount;
289 int flags; //refcount;
317 int flags; //refcount;
334 int flags; //refcount;
372 int flags; //refcount;
475 int flags; //refcount;
  /external/icu4c/i18n/
colldata.cpp 436 int32_t refCount;
440 : data(theData), refCount(1)
447 // check refCount?
554 entry->refCount += 1;
577 entry->refCount -= 1;
609 if (entry->refCount <= 0) {
  /external/srec/srec/crec/
astar.c 408 extended_parp->refcount = 1;
409 parp->refcount++;
463 refcount counts the number of parps that depend on this parp */
470 parp->refcount--;
471 if (parp->refcount == 0)
515 parp->refcount = 1;
585 stack->root_path->refcount = 9999;
    [all...]
  /external/dnsmasq/src/
forward.c 914 if (daemon->randomsocks[i].refcount == 0)
919 daemon->randomsocks[i].refcount = 1;
928 if (daemon->randomsocks[j].refcount != 0 &&
930 daemon->randomsocks[j].refcount != 0xffff)
933 daemon->randomsocks[j].refcount++;
943 if (f->rfd4 && --(f->rfd4->refcount) == 0)
950 if (f->rfd6 && --(f->rfd6->refcount) == 0)

Completed in 637 milliseconds

1 2 3 45 6 7 8 91011>>