Lines Matching full:native_object_reloc_
831 auto it = native_object_reloc_.find(field);
832 CHECK(it == native_object_reloc_.end()) << "Field at index " << i << ":" << j
834 native_object_reloc_.emplace(
871 auto it = native_object_reloc_.find(method);
872 CHECK(it == native_object_reloc_.end()) << "Method " << method << " already assigned "
874 native_object_reloc_.emplace(method, NativeObjectReloc { bin_slot_sizes_[bin], bin });
952 for (auto& pair : native_object_reloc_) {
1022 auto it = native_object_reloc_.find(method);
1023 CHECK(it != native_object_reloc_.end()) << PrettyMethod(method) << " @ " << method;
1061 for (auto& pair : native_object_reloc_) {
1083 auto it = native_object_reloc_.find(m);
1084 CHECK(it != native_object_reloc_.end()) << "No fowarding for " << PrettyMethod(m);
1140 auto it = native_object_reloc_.find(elem);
1141 if (it == native_object_reloc_.end()) {
1239 auto it = native_object_reloc_.find(fields[i]);
1240 CHECK(it != native_object_reloc_.end()) << PrettyClass(orig) << " : " << PrettyField(fields[i]);
1251 auto it = native_object_reloc_.find(direct_methods);
1252 CHECK(it != native_object_reloc_.end()) << PrettyClass(orig);
1258 auto it = native_object_reloc_.find(virtual_methods);
1259 CHECK(it != native_object_reloc_.end()) << PrettyClass(orig);
1266 auto it = native_object_reloc_.find(orig->GetEmbeddedVTableEntry(i, target_ptr_size_));
1267 CHECK(it != native_object_reloc_.end()) << PrettyClass(orig);
1272 auto it = native_object_reloc_.find(orig->GetEmbeddedImTableEntry(i, target_ptr_size_));
1273 CHECK(it != native_object_reloc_.end()) << PrettyClass(orig);
1314 auto it = native_object_reloc_.find(src_method);
1315 CHECK(it != native_object_reloc_.end()) << "Missing relocation for AbstractMethod.artMethod "