Lines Matching refs:Get

77         mirror::ObjectArray<mirror::Object>::Alloc(self, ca.Get(), length / 4)));  in FillHeap()
78 if (self->IsExceptionPending() || h.Get() == nullptr) { in FillHeap()
96 if (!self->IsExceptionPending() && h.Get() != nullptr) { in FillHeap()
118 … monitor_test_->object_.Get()->MonitorEnter(self); // Lock the object. This should transition in Run()
119 … LockWord lock_after = monitor_test_->object_.Get()->GetLockWord(false); // it to thinLocked. in Run()
124 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis. in Run()
130 monitor_test_->object_.Get()->IdentityHashCode(); in Run()
131 LockWord lock_after2 = monitor_test_->object_.Get()->GetLockWord(false); in Run()
136 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis. in Run()
151 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
165 monitor_test_->object_.Get()->MonitorExit(self); // Release the object. Appeases analysis. in Run()
196 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
241 Monitor::Wait(self, monitor_test_->object_.Get(), 10, 0, true, in Run()
270 monitor_test_->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in Run()
272 monitor_test_->watchdog_object_.Get()->Wait(self, 30 * 1000, 0); // Wait for 30s, or being in Run()
275 monitor_test_->watchdog_object_.Get()->MonitorExit(self); // Release the lock. in Run()
347 test->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in CommonWaitSetup()
348 test->watchdog_object_.Get()->NotifyAll(self); // Wake up waiting parties. in CommonWaitSetup()
349 test->watchdog_object_.Get()->MonitorExit(self); // Release the lock. in CommonWaitSetup()