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

  /external/webkit/Source/WebCore/webaudio/
AudioNode.cpp 46 , m_disabledRefCount(0)
62 printf("%p: %d: AudioNode::~AudioNode() %d %d %d\n", this, type(), m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
184 atomicIncrement(&m_disabledRefCount);
191 printf("%p: %d: AudioNode::ref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
250 ASSERT(m_disabledRefCount > 0);
251 atomicDecrement(&m_disabledRefCount);
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 158 volatile int m_disabledRefCount;

Completed in 70 milliseconds