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

  /external/webkit/Source/WebCore/webaudio/
AudioContext.cpp 377 void AudioContext::lock(bool& mustReleaseLock)
386 mustReleaseLock = false;
391 mustReleaseLock = true;
395 bool AudioContext::tryLock(bool& mustReleaseLock)
405 lock(mustReleaseLock);
414 mustReleaseLock = false;
422 mustReleaseLock = hasLock;
458 bool mustReleaseLock;
459 if (tryLock(mustReleaseLock)) {
464 if (mustReleaseLock)
    [all...]
AudioNode.cpp 207 bool mustReleaseLock = false;
211 hasLock = context()->tryLock(mustReleaseLock);
213 context()->lock(mustReleaseLock);
221 if (mustReleaseLock)
AudioContext.h 151 // 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 343 milliseconds