Lines Matching refs:self
23 extern "C" int artLockObjectFromCode(mirror::Object* obj, Thread* self, in artLockObjectFromCode() argument
27 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); in artLockObjectFromCode()
29 ThrowLocation throw_location(self->GetCurrentLocationForThrow()); in artLockObjectFromCode()
35 obj = obj->MonitorEnter(self); // May block in artLockObjectFromCode()
36 CHECK(self->HoldsLock(obj)); in artLockObjectFromCode()
37 CHECK(!self->IsExceptionPending()); in artLockObjectFromCode()
39 obj->MonitorEnter(self); // May block in artLockObjectFromCode()
46 extern "C" int artUnlockObjectFromCode(mirror::Object* obj, Thread* self, in artUnlockObjectFromCode() argument
50 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); in artUnlockObjectFromCode()
52 ThrowLocation throw_location(self->GetCurrentLocationForThrow()); in artUnlockObjectFromCode()
58 return obj->MonitorExit(self) ? 0 /* Success */ : -1 /* Failure */; in artUnlockObjectFromCode()