OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsExclusiveHeld
(Results
1 - 15
of
15
) sorted by null
/art/runtime/base/
mutex.h
220
bool
IsExclusiveHeld
(const Thread* self) const;
225
CHECK(
IsExclusiveHeld
(self)) << *this;
233
CHECK(!
IsExclusiveHeld
(self)) << *this;
318
bool
IsExclusiveHeld
(const Thread* self) const;
323
CHECK(
IsExclusiveHeld
(self)) << *this;
331
CHECK(!
IsExclusiveHeld
(self)) << *this;
mutex-inl.h
211
inline bool Mutex::
IsExclusiveHeld
(const Thread* self) const {
227
inline bool ReaderWriterMutex::
IsExclusiveHeld
(const Thread* self) const {
mutex.cc
318
if (!recursive_ || !
IsExclusiveHeld
(self)) {
361
if (!recursive_ || !
IsExclusiveHeld
(self)) {
648
result =
IsExclusiveHeld
(self); // TODO: a better best effort here.
[
all
...]
/art/runtime/gc/collector/
garbage_collector.cc
90
if (Locks::mutator_lock_->
IsExclusiveHeld
(self)) {
mark_compact.cc
78
CHECK(!Locks::mutator_lock_->
IsExclusiveHeld
(self));
195
CHECK(Locks::mutator_lock_->
IsExclusiveHeld
(self));
semi_space.cc
109
if (Locks::mutator_lock_->
IsExclusiveHeld
(self)) {
165
CHECK(Locks::mutator_lock_->
IsExclusiveHeld
(self_));
[
all
...]
mark_sweep.cc
215
CHECK(!Locks::mutator_lock_->
IsExclusiveHeld
(self));
492
if (Locks::mutator_lock_->
IsExclusiveHeld
(self)) {
[
all
...]
/art/runtime/gc/space/
rosalloc_space.cc
312
if (Locks::mutator_lock_->
IsExclusiveHeld
(self)) {
large_object_space.cc
186
if (lock_.
IsExclusiveHeld
(self)) {
/art/runtime/
runtime.cc
233
if (Locks::mutator_lock_->
IsExclusiveHeld
(self) || Locks::mutator_lock_->IsSharedHeld(self)) {
261
bool tll_already_held = Locks::thread_list_lock_->
IsExclusiveHeld
(self);
[
all
...]
thread.cc
631
if (!Locks::thread_list_lock_->
IsExclusiveHeld
(self)) {
633
if (!Locks::thread_list_lock_->
IsExclusiveHeld
(self)) {
[
all
...]
monitor.cc
[
all
...]
/art/runtime/jdwp/
jdwp_event.cc
[
all
...]
/art/runtime/gc/allocator/
rosalloc.cc
[
all
...]
/art/runtime/gc/
heap.cc
[
all
...]
Completed in 212 milliseconds