Lines Matching refs:m

178         ArtMethod* m = GetMethod();  in SetLockingMethod()  local
179 if (m->IsRuntimeMethod()) { in SetLockingMethod()
185 method_ = m; in SetLockingMethod()
349 ArtMethod* m = stack_visitor->GetMethod(); in AtraceMonitorLockImpl()
350 if (m == nullptr || m->IsRuntimeMethod()) { in AtraceMonitorLockImpl()
357 method = m; in AtraceMonitorLockImpl()
484 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local
487 TranslateLocation(m, pc, &filename, &line_number); in Lock()
489 << ArtMethod::PrettyMethod(m) << "(" << (filename != nullptr ? filename : "null") in Lock()
584 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local
592 << " in " << ArtMethod::PrettyMethod(m) << " for " in Lock()
598 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local
606 << " in " << ArtMethod::PrettyMethod(m) << " for " in Lock()
1033 Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code); in Inflate() local
1034 DCHECK(m != nullptr); in Inflate()
1035 if (m->Install(self)) { in Inflate()
1038 << " created monitor " << m << " for object " << obj; in Inflate()
1041 << " created monitor " << m << " for object " << obj; in Inflate()
1043 Runtime::Current()->GetMonitorList()->Add(m); in Inflate()
1046 MonitorPool::ReleaseMonitor(self, m); in Inflate()
1460 ArtMethod* m = stack_visitor->GetMethod(); in VisitLocks() local
1461 CHECK(m != nullptr); in VisitLocks()
1465 if (m->IsNative()) { in VisitLocks()
1466 if (m->IsSynchronized()) { in VisitLocks()
1475 if (m->IsProxyMethod()) { in VisitLocks()
1476 CHECK(!m->IsSynchronized()); in VisitLocks()
1481 CHECK(m->GetCodeItem() != nullptr) << m->PrettyMethod(); in VisitLocks()
1482 CodeItemDataAccessor accessor(m->DexInstructionData()); in VisitLocks()
1492 LOG(ERROR) << "Could not find dex_pc for " << m->PrettyMethod(); in VisitLocks()
1499 verifier::MethodVerifier::FindLocksAtDexPc(m, in VisitLocks()
1520 success = stack_visitor->GetVReg(m, dex_reg, kReferenceVReg, &value); in VisitLocks()
1530 << m->PrettyMethod(); in VisitLocks()
1632 void MonitorList::Add(Monitor* m) { in Add() argument
1644 list_.push_front(m); in Add()
1651 Monitor* m = *it; in SweepMonitorList() local
1653 ObjPtr<mirror::Object> obj = m->GetObject<kWithoutReadBarrier>(); in SweepMonitorList()
1657 VLOG(monitor) << "freeing monitor " << m << " belonging to unmarked object " in SweepMonitorList()
1659 MonitorPool::ReleaseMonitor(self, m); in SweepMonitorList()
1662 m->SetObject(new_obj); in SweepMonitorList()