Searched refs:sci (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | subtype_check.h | 322 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass); in GetEncodedPathToRootForTarget() local 323 DCHECK_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); in GetEncodedPathToRootForTarget() 324 return sci.GetEncodedPathToRoot(); in GetEncodedPathToRootForTarget() 336 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass); in GetEncodedPathToRootMask() local 337 DCHECK_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); in GetEncodedPathToRootMask() 338 return sci.GetEncodedPathToRootMask(); in GetEncodedPathToRootMask() 355 SubtypeCheckInfo sci = GetSubtypeCheckInfo(source); in IsSubtypeOf() local 358 return sci.IsSubtypeOf(target_sci); in IsSubtypeOf() 410 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass, parent_depth + 1u); in InitializeOrAssign() local 414 const SubtypeCheckInfo::State sci_state = sci.GetState(); in InitializeOrAssign() [all …]
|
D | subtype_check_info_test.cc | 261 SubtypeCheckInfo sci = in TEST_F() local 267 EXPECT_EQ(MaxInt<StorageType>(LenForPos()), sci.GetEncodedPathToRoot()); in TEST_F() 312 SubtypeCheckInfo sci = SubtypeCheckInfo::CreateRoot(); in TEST_F() local 313 EXPECT_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); // Root is always assigned. in TEST_F() 314 EXPECT_EQ(0u, GetPathToRoot(sci).Length()); // Root's path length is 0. in TEST_F() 315 EXPECT_TRUE(HasNext(sci)); // Root always has a "Next". in TEST_F() 316 EXPECT_EQ(MakeBitStringChar(1u), sci.GetNext()); // Next>=1 to disambiguate from Uninitialized. in TEST_F()
|
/art/tools/jvmti-agents/ti-alloc-sample/ |
D | ti_alloc_sample.cc | 284 ScopedClassInfo sci(jvmti, klass); in formatAllocation() local 285 if (sci.Init(/*get_generic=*/false)) { in formatAllocation() 286 allocation << ", jclass[" << sci << "]"; in formatAllocation()
|
/art/tools/jvmti-agents/ti-fast/ |
D | tifast.cc | 528 ScopedClassInfo sci(jvmti, klass); in PrintRest() local 529 if (sci.Init(event_ != JVMTI_EVENT_VM_OBJECT_ALLOC)) { in PrintRest() 530 stream << ", jobject[type: " << sci << "]"; in PrintRest() 548 ScopedClassInfo sci(jvmti, klass); in PrintRest() local 549 if (sci.Init(/*get_generic=*/event_ != JVMTI_EVENT_VM_OBJECT_ALLOC)) { in PrintRest() 550 stream << ", jclass[" << sci << "]"; in PrintRest()
|
/art/test/ti-stress/ |
D | stress.cc | 728 ScopedClassInfo sci(jvmti, k); in WatchAllFields() local 729 if (sci.Init()) { in WatchAllFields() 730 LOG(INFO) << "NOTE: class " << sci.GetName() << " already loaded."; in WatchAllFields()
|