OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kTimedWaiting
(Results
1 - 6
of
6
) sorted by null
/art/runtime/
thread_state.h
26
kTimedWaiting
, // TIMED_WAITING TS_WAIT in Object.wait() with a timeout
monitor.cc
394
DCHECK(why ==
kTimedWaiting
|| why == kWaiting || why == kSleeping);
405
if (why ==
kTimedWaiting
&& (ms == 0 && ns == 0)) {
470
DCHECK(why ==
kTimedWaiting
|| why == kSleeping) << why;
839
if (state == kWaiting || state ==
kTimedWaiting
|| state == kSleeping) {
[
all
...]
thread.cc
863
if (state ==
kTimedWaiting
|| state == kSleeping || state == kWaiting) {
[
all
...]
debugger.cc
[
all
...]
/art/runtime/mirror/
object-inl.h
71
Monitor::Wait(self, this, ms, ns, true,
kTimedWaiting
);
/art/runtime/native/
java_lang_Thread.cc
69
case
kTimedWaiting
: return kJavaTimedWaiting;
Completed in 121 milliseconds