OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wait_mutex_
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
thread.h
646
void NotifyLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(
wait_mutex_
);
variable
736
mutable Mutex*
wait_mutex_
DEFAULT_MUTEX_ACQUIRED_AFTER;
737
ConditionVariable* wait_cond_ GUARDED_BY(
wait_mutex_
);
739
Monitor* wait_monitor_ GUARDED_BY(
wait_mutex_
);
741
bool32_t interrupted_ GUARDED_BY(
wait_mutex_
);
thread.cc
1210
MutexLock mu(Thread::Current(), *
wait_mutex_
);
local
1218
MutexLock mu(Thread::Current(), *
wait_mutex_
);
local
[
all
...]
Completed in 52 milliseconds