OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mClientLock
(Results
1 - 2
of
2
) sorted by null
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java
72
private ReentrantLock
mClientLock
= new ReentrantLock();
96
mClientLock
.lock();
104
mClientLock
.unlock();
179
if (
mClientLock
.getHoldCount() == 0) {
180
mClientLock
.lock();
192
while (
mClientLock
.getHoldCount() > 0) {
193
mClientLock
.unlock();
456
mClientLock
.lock();
471
mClientLock
.unlock();
516
mClientLock
.lock()
[
all
...]
/frameworks/av/services/camera/libcameraservice/
CameraService.h
127
// returns plain pointer of client. Note that
mClientLock
should be acquired to
163
// CameraService's
mClientLock
should be acquired to access this.
340
Mutex
mClientLock
[MAX_CAMERAS]; // prevent Client destruction inside callbacks
Completed in 117 milliseconds