HomeSort by relevance Sort by last modified time
    Searched full:m_normalrefcount (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/webaudio/
AudioNode.cpp 44 , m_normalRefCount(1) // start out with normal refCount == 1 (like WTF::RefCounted class)
62 printf("%p: %d: AudioNode::~AudioNode() %d %d %d\n", this, type(), m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
178 atomicIncrement(&m_normalRefCount);
191 printf("%p: %d: AudioNode::ref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
242 ASSERT(m_normalRefCount > 0);
243 atomicDecrement(&m_normalRefCount);
258 printf("%p: %d: AudioNode::deref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
262 if (!m_normalRefCount && !m_disabledRefCount) {
AudioNode.h 156 volatile int m_normalRefCount;

Completed in 2849 milliseconds