Home
last modified time | relevance | path

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

/art/test/923-monitors/
Dexpected-stdout.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.h94 static void Notify(Thread* self, ObjPtr<mirror::Object> obj) in Notify() function
246 void Notify(Thread* self)
Dmonitor_test.cc371 obj1->Notify(self); in TEST_F()
Dmonitor.cc953 void Monitor::Notify(Thread* self) { in Notify() function in art::Monitor
1347 mon->Notify(self); in DoNotify()
Dthread.h589 void Notify() REQUIRES(!wait_mutex_);
Dthread.cc2704 void Thread::Notify() { in Notify() function in art::Thread
/art/openjdkjvmti/
Dti_monitor.cc152 bool Notify(art::Thread* self) { in Notify() function in openjdkjvmti::JvmtiMonitor
153 return Notify(self, [&]() { cond_.notify_one(); }); in Notify()
157 return Notify(self, [&]() { cond_.notify_all(); }); in NotifyAll()
204 bool Notify(art::Thread* self, T how_to_notify) { in Notify() function in openjdkjvmti::JvmtiMonitor
333 if (!monitor->Notify(self)) { in RawMonitorNotify()
Dti_thread.cc1111 me->Notify(); in StopThread()
/art/runtime/native/
Djava_lang_Object.cc38 soa.Decode<mirror::Object>(java_this)->Notify(soa.Self()); in Object_notify()
/art/tools/jvmti-agents/simple-profile/
Dsimple_profile.cc104 void Notify() { in Notify() function
135 sjm.Notify(); in Dump()
166 sjm.Notify(); in Shutdown()
/art/runtime/mirror/
Dobject-inl.h94 inline void Object::Notify(Thread* self) { in Notify() function
95 Monitor::Notify(self, this); in Notify()
Dobject.h172 void Notify(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_);