/art/runtime/native/ |
D | java_lang_Object.cc | 52 static void Object_waitJI(JNIEnv* env, jobject java_this, jlong ms, jint ns) { in Object_waitJI() argument 55 o->Wait(soa.Self(), ms, ns); in Object_waitJI()
|
D | java_lang_Thread.cc | 165 static void Thread_sleep(JNIEnv* env, jclass, jobject java_lock, jlong ms, jint ns) { in Thread_sleep() argument 168 Monitor::Wait(Thread::Current(), lock, ms, ns, true, kSleeping); in Thread_sleep()
|
/art/runtime/ |
D | utils.h | 426 static constexpr inline uint64_t NsToMs(uint64_t ns) { 427 return ns / 1000 / 1000; 431 static constexpr inline uint64_t MsToNs(uint64_t ns) { 432 return ns * 1000 * 1000; 441 void NanoSleep(uint64_t ns); 445 void InitTimeSpec(bool absolute, int clock, int64_t ms, int32_t ns, timespec* ts);
|
D | monitor.cc | 430 void Monitor::Wait(Thread* self, int64_t ms, int32_t ns, in Wait() argument 446 if (why == kTimedWaiting && (ms == 0 && ns == 0)) { in Wait() 451 if (ms < 0 || ns < 0 || ns > 999999) { in Wait() 455 "timeout arguments out of range: ms=%" PRId64 " ns=%d", ms, ns); in Wait() 510 self->GetWaitConditionVariable()->TimedWait(self, ms, ns); in Wait() 833 void Monitor::Wait(Thread* self, mirror::Object *obj, int64_t ms, int32_t ns, in Wait() argument 867 mon->Wait(self, ms, ns, interruptShouldThrow, why); in Wait()
|
D | utils.cc | 188 void NanoSleep(uint64_t ns) { in NanoSleep() argument 191 tm.tv_nsec = ns; in NanoSleep() 195 void InitTimeSpec(bool absolute, int clock, int64_t ms, int32_t ns, timespec* ts) { in InitTimeSpec() argument 219 ts->tv_nsec = (ts->tv_nsec + (ms % 1000) * 1000000) + ns; in InitTimeSpec()
|
D | monitor.h | 78 static void Wait(Thread* self, mirror::Object* obj, int64_t ms, int32_t ns,
|
/art/runtime/base/ |
D | mutex.cc | 561 bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) { in ExclusiveLockWithTimeout() argument 566 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts); in ExclusiveLockWithTimeout() 598 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts); in ExclusiveLockWithTimeout() 796 void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { in TimedWait() argument 803 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts); in TimedWait() 835 InitTimeSpec(true, clock, ms, ns, &ts); in TimedWait()
|
D | mutex.h | 302 bool ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) 391 void TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS;
|
/art/runtime/mirror/ |
D | object-inl.h | 113 inline void Object::Wait(Thread* self, int64_t ms, int32_t ns) { in Wait() argument 114 Monitor::Wait(self, this, ms, ns, true, kTimedWaiting); in Wait()
|