Home
last modified time | relevance | path

Searched refs:Notify (Results 1 – 12 of 12) sorted by relevance

/art/test/923-monitors/
Dexpected.txt24 Notify
27 Notify
/art/runtime/
Dobject_lock.cc42 void ObjectLock<T>::Notify() { in Notify() function in art::ObjectLock
43 obj_->Notify(self_); in Notify()
Dobject_lock.h37 void Notify() REQUIRES_SHARED(Locks::mutator_lock_);
Dmonitor.h78 static void Notify(Thread* self, mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) { in Notify() function
218 void Notify(Thread* self)
Dmonitor.cc775 void Monitor::Notify(Thread* self) { in Notify() function in art::Monitor
811 thread->Notify(); in NotifyAll()
1160 mon->Notify(self); in DoNotify()
Dmonitor_test.cc423 obj1->Notify(self); in TEST_F()
Dthread.h506 void Notify() REQUIRES(!*wait_mutex_);
Dthread.cc2367 void Thread::Notify() { in Notify() function in art::Thread
/art/runtime/openjdkjvmti/
Dti_monitor.cc117 bool Notify(art::Thread* self) { in Notify() function in openjdkjvmti::JvmtiMonitor
118 return Notify(self, [&]() { cond_.notify_one(); }); in Notify()
122 return Notify(self, [&]() { cond_.notify_all(); }); in NotifyAll()
160 bool Notify(art::Thread* self, T how_to_notify) { in Notify() function in openjdkjvmti::JvmtiMonitor
280 if (!monitor->Notify(self)) { in RawMonitorNotify()
/art/runtime/native/
Djava_lang_Object.cc36 soa.Decode<mirror::Object>(java_this)->Notify(soa.Self()); in Object_notify()
/art/runtime/mirror/
Dobject-inl.h108 inline void Object::Notify(Thread* self) { in Notify() function
109 Monitor::Notify(self, this); in Notify()
Dobject.h175 void Notify(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_);