OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_normalRefCount
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp
53
,
m_normalRefCount
(1) // start out with normal refCount == 1 (like WTF::RefCounted class)
74
fprintf(stderr, "%p: %d: AudioNode::~AudioNode() %d %d\n", this, nodeType(),
m_normalRefCount
, m_connectionRefCount);
483
atomicIncrement(&
m_normalRefCount
);
493
fprintf(stderr, "%p: %d: AudioNode::ref(%d) %d %d\n", this, nodeType(), refType,
m_normalRefCount
, m_connectionRefCount);
544
ASSERT(
m_normalRefCount
> 0);
545
atomicDecrement(&
m_normalRefCount
);
556
fprintf(stderr, "%p: %d: AudioNode::deref(%d) %d %d\n", this, nodeType(), refType,
m_normalRefCount
, m_connectionRefCount);
560
if (!
m_normalRefCount
) {
AudioNode.h
212
volatile int
m_normalRefCount
;
Completed in 23 milliseconds