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

  /external/webkit/Source/WebCore/webaudio/
AudioNode.cpp 45 , m_connectionRefCount(0)
62 printf("%p: %d: AudioNode::~AudioNode() %d %d %d\n", this, type(), m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
181 atomicIncrement(&m_connectionRefCount);
191 printf("%p: %d: AudioNode::ref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
194 if (m_connectionRefCount == 1 && refType == RefTypeConnection) {
246 ASSERT(m_connectionRefCount > 0);
247 atomicDecrement(&m_connectionRefCount);
258 printf("%p: %d: AudioNode::deref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
261 if (!m_connectionRefCount) {
AudioNode.h 157 volatile int m_connectionRefCount;

Completed in 17 milliseconds