Searched refs:Notify (Results 1 - 11 of 11) sorted by relevance

/art/runtime/
H A Dobject_lock.cc42 void ObjectLock<T>::Notify() { function in class:art::ObjectLock
43 obj_->Notify(self_);
H A Dobject_lock.h37 void Notify() REQUIRES_SHARED(Locks::mutator_lock_);
H A Dmonitor.h78 static void Notify(Thread* self, mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
213 REQUIRES_SHARED(Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS; // For mon->Notify.
215 void Notify(Thread* self)
H A Dmonitor.cc730 void Monitor::Notify(Thread* self) { function in class:art::Monitor
766 thread->Notify();
1112 mon->Notify(self);
H A Dmonitor_test.cc423 obj1->Notify(self);
H A Dthread.h500 void Notify() REQUIRES(!*wait_mutex_);
H A Dthread.cc2292 void Thread::Notify() { function in class:art::Thread
/art/runtime/openjdkjvmti/
H A Dti_monitor.cc117 bool Notify(art::Thread* self) { function in class:openjdkjvmti::JvmtiMonitor
118 return Notify(self, [&]() { cond_.notify_one(); });
122 return Notify(self, [&]() { cond_.notify_all(); });
160 bool Notify(art::Thread* self, T how_to_notify) { function
280 if (!monitor->Notify(self)) {
/art/runtime/native/
H A Djava_lang_Object.cc33 soa.Decode<mirror::Object>(java_this)->Notify(soa.Self());
/art/runtime/mirror/
H A Dobject-inl.h109 inline void Object::Notify(Thread* self) { function in class:art::mirror::Object
110 Monitor::Notify(self, this);
H A Dobject.h175 void Notify(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_);

Completed in 1621 milliseconds