OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_connectionRefCount
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp
54
,
m_connectionRefCount
(0)
74
fprintf(stderr, "%p: %d: AudioNode::~AudioNode() %d %d\n", this, nodeType(), m_normalRefCount,
m_connectionRefCount
);
443
if (m_isDisabled &&
m_connectionRefCount
> 0) {
459
if (
m_connectionRefCount
<= 1 && !m_isDisabled) {
486
atomicIncrement(&
m_connectionRefCount
);
493
fprintf(stderr, "%p: %d: AudioNode::ref(%d) %d %d\n", this, nodeType(), refType, m_normalRefCount,
m_connectionRefCount
);
548
ASSERT(
m_connectionRefCount
> 0);
549
atomicDecrement(&
m_connectionRefCount
);
556
fprintf(stderr, "%p: %d: AudioNode::deref(%d) %d %d\n", this, nodeType(), refType, m_normalRefCount,
m_connectionRefCount
);
559
if (!
m_connectionRefCount
) {
[
all
...]
AudioNode.h
213
volatile int
m_connectionRefCount
;
Completed in 31 milliseconds