Home | History | Annotate | Download | only in runtime

Lines Matching refs:ObjectLock

26 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
32 ObjectLock<T>::~ObjectLock() {
37 void ObjectLock<T>::WaitIgnoringInterrupts() {
42 void ObjectLock<T>::Notify() {
47 void ObjectLock<T>::NotifyAll() {
64 template class ObjectLock<mirror::Class>;
65 template class ObjectLock<mirror::ClassExt>;
66 template class ObjectLock<mirror::Object>;