HomeSort by relevance Sort by last modified time
    Searched refs:MonitorExit (Results 1 - 25 of 69) sorted by null

1 2 3

  /art/runtime/entrypoints/portable/
portable_lock_entrypoints.cc 34 // MonitorExit may throw exception.
35 obj->MonitorExit(thread);
  /art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc 27 // MonitorExit may throw exception
28 return obj->MonitorExit(self) ? 0 /* Success */ : -1 /* Failure */;
  /art/runtime/mirror/
object-inl.h 54 inline bool Object::MonitorExit(Thread* self) {
55 return Monitor::MonitorExit(self, this);
object.h 110 bool MonitorExit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
  /art/runtime/
monitor.h 78 static bool MonitorExit(Thread* thread, mirror::Object* obj)
jni_internal_test.cc     [all...]
  /art/runtime/entrypoints/
entrypoint_utils.h 292 self->DecodeJObject(locked)->MonitorExit(self);
296 << "\nEncountered second exception during implicit MonitorExit:\n"