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
722
void AudioContext::lock(bool&
mustReleaseLock
)
731
mustReleaseLock
= false;
736
mustReleaseLock
= true;
740
bool AudioContext::tryLock(bool&
mustReleaseLock
)
750
lock(
mustReleaseLock
);
759
mustReleaseLock
= false;
767
mustReleaseLock
= hasLock;
803
bool
mustReleaseLock
;
804
if (tryLock(
mustReleaseLock
)) {
811
if (
mustReleaseLock
)
[
all
...]
AudioNode.cpp
508
bool
mustReleaseLock
= false;
512
hasLock = context()->tryLock(
mustReleaseLock
);
514
context()->lock(
mustReleaseLock
);
522
if (
mustReleaseLock
)
AudioContext.h
189
//
mustReleaseLock
is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
190
void lock(bool&
mustReleaseLock
);
193
//
mustReleaseLock
is set to true if we acquired the lock in this method call and caller must unlock(), false if it was previously acquired.
194
bool tryLock(bool&
mustReleaseLock
);
Completed in 50 milliseconds