Home | History | Annotate | Download | only in runtime

Lines Matching refs:descriptor

60 mirror::Class* ClassTable::UpdateClass(const char* descriptor, mirror::Class* klass, size_t hash) {
63 DescriptorHashPair pair(descriptor, hash);
68 LOG(FATAL) << "Updating class found in frozen table " << descriptor;
71 LOG(FATAL) << "Updating class not found " << descriptor;
74 CHECK_NE(existing, klass) << descriptor;
75 CHECK(!existing->IsResolved()) << descriptor;
76 CHECK_EQ(klass->GetStatus(), ClassStatus::kResolving) << descriptor;
77 CHECK(!klass->IsTemp()) << descriptor;
79 // Update the element in the hash set with the new class. This is safe to do since the descriptor
124 mirror::Class* ClassTable::Lookup(const char* descriptor, size_t hash) {
125 DescriptorHashPair pair(descriptor, hash);
178 bool ClassTable::Remove(const char* descriptor) {
179 DescriptorHashPair pair(descriptor, ComputeModifiedUtf8Hash(descriptor));