OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SharedLock
(Results
1 - 6
of
6
) sorted by null
/art/runtime/base/
mutex.h
214
// State | ExclusiveLock | ExclusiveUnlock |
SharedLock
| SharedUnlock
216
// Free | Exclusive | error |
SharedLock
(1) | error
218
// Shared(n) | Block | error |
SharedLock
(n+1)* | Shared(n-1) or Free
219
// * for large values of n the
SharedLock
may block.
244
void
SharedLock
(Thread* self) SHARED_LOCK_FUNCTION() ALWAYS_INLINE;
245
void ReaderLock(Thread* self) SHARED_LOCK_FUNCTION() {
SharedLock
(self); }
378
mu_.
SharedLock
(self_);
mutex-inl.h
134
inline void ReaderWriterMutex::
SharedLock
(Thread* self) {
mutex_test.cc
142
mu.
SharedLock
(Thread::Current());
/art/runtime/
thread-inl.h
108
Locks::mutator_lock_->
SharedLock
(this);
debugger.cc
675
Locks::mutator_lock_->
SharedLock
(self);
[
all
...]
/art/runtime/gc/collector/
mark_sweep.cc
[
all
...]
Completed in 288 milliseconds