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

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.cpp 617 void AudioContext::lock(bool& mustReleaseLock)
626 mustReleaseLock = false;
631 mustReleaseLock = true;
635 bool AudioContext::tryLock(bool& mustReleaseLock)
645 lock(mustReleaseLock);
654 mustReleaseLock = false;
662 mustReleaseLock = hasLock;
698 bool mustReleaseLock;
699 if (tryLock(mustReleaseLock)) {
706 if (mustReleaseLock)
    [all...]
AudioNode.cpp 504 bool mustReleaseLock = false;
508 hasLock = context()->tryLock(mustReleaseLock);
510 context()->lock(mustReleaseLock);
518 if (mustReleaseLock)
AudioContext.h 173 // mustReleaseLock is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
174 void lock(bool& mustReleaseLock);
177 // mustReleaseLock is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
178 bool tryLock(bool& mustReleaseLock);

Completed in 294 milliseconds