Lines Matching refs:soa
31 ScopedFastNativeObjectAccess soa(env); in Object_internalClone() local
32 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_internalClone()
33 return soa.AddLocalReference<jobject>(o->Clone(soa.Self())); in Object_internalClone()
37 ScopedFastNativeObjectAccess soa(env); in Object_notify() local
38 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_notify()
39 o->Notify(soa.Self()); in Object_notify()
43 ScopedFastNativeObjectAccess soa(env); in Object_notifyAll() local
44 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_notifyAll()
45 o->NotifyAll(soa.Self()); in Object_notifyAll()
49 ScopedFastNativeObjectAccess soa(env); in Object_wait() local
50 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_wait()
51 o->Wait(soa.Self()); in Object_wait()
55 ScopedFastNativeObjectAccess soa(env); in Object_waitJI() local
56 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_waitJI()
57 o->Wait(soa.Self(), ms, ns); in Object_waitJI()