Home | History | Annotate | Download | only in webaudio

Lines Matching refs:RefType

174 void AudioNode::ref(RefType refType)
176 switch (refType) {
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) {
202 void AudioNode::deref(RefType refType)
219 finishDeref(refType);
226 context()->addDeferredFinishDeref(this, refType);
236 void AudioNode::finishDeref(RefType refType)
240 switch (refType) {
258 printf("%p: %d: AudioNode::deref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
272 } else if (refType == RefTypeConnection) {