OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:waitMonitor
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/
Sync.cpp
616
static void
waitMonitor
(Thread* self, Monitor* mon, s8 msec, s4 nsec,
685
* Set
waitMonitor
to the monitor object we will be waiting on.
686
* When
waitMonitor
is non-NULL a notifying or interrupting thread
689
assert(self->
waitMonitor
== NULL);
690
self->
waitMonitor
= mon;
698
self->
waitMonitor
= NULL;
725
self->
waitMonitor
= NULL;
786
if (thread->
waitMonitor
!= NULL) {
818
if (thread->
waitMonitor
!= NULL) {
[
all
...]
Thread.h
252
/* mutex to guard the interrupted and the
waitMonitor
members */
258
Monitor*
waitMonitor
;
Completed in 89 milliseconds