OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mustReleaseLock
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.cpp
589
void AudioContext::lock(bool&
mustReleaseLock
)
598
mustReleaseLock
= false;
603
mustReleaseLock
= true;
607
bool AudioContext::tryLock(bool&
mustReleaseLock
)
617
lock(
mustReleaseLock
);
626
mustReleaseLock
= false;
634
mustReleaseLock
= hasLock;
670
bool
mustReleaseLock
;
671
if (tryLock(
mustReleaseLock
)) {
681
if (
mustReleaseLock
)
[
all
...]
AudioNode.cpp
504
bool
mustReleaseLock
= false;
508
hasLock = context()->tryLock(
mustReleaseLock
);
510
context()->lock(
mustReleaseLock
);
517
if (
mustReleaseLock
)
AudioContext.h
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
void lock(bool&
mustReleaseLock
);
181
//
mustReleaseLock
is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
182
bool tryLock(bool&
mustReleaseLock
);
Completed in 782 milliseconds