Searched refs:mustReleaseLock (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/webaudio/
H A DAudioContext.cpp377 void AudioContext::lock(bool& mustReleaseLock) argument
386 mustReleaseLock = false;
391 mustReleaseLock = true;
395 bool AudioContext::tryLock(bool& mustReleaseLock) argument
405 lock(mustReleaseLock);
414 mustReleaseLock = false;
422 mustReleaseLock = hasLock;
458 bool mustReleaseLock; local
459 if (tryLock(mustReleaseLock)) {
464 if (mustReleaseLock)
476 bool mustReleaseLock; local
[all...]
H A DAudioNode.cpp207 bool mustReleaseLock = false; local
211 hasLock = context()->tryLock(mustReleaseLock);
213 context()->lock(mustReleaseLock);
221 if (mustReleaseLock)
H A DAudioContext.h151 // mustReleaseLock is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
152 void lock(bool& mustReleaseLock);
155 // mustReleaseLock is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
156 bool tryLock(bool& mustReleaseLock);

Completed in 382 milliseconds