Home
last modified time | relevance | path

Searched refs:native_object_relocations_ (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/linker/
Dimage_writer.cc723 native_object_relocations_.emplace(&preresolved_strings[i], in PrepareDexCacheArraySlots()
738 native_object_relocations_.emplace(array, in AddDexCacheArrayRelocation()
1603 auto it = native_object_relocations_.find(cur_fields); in RecordNativeRelocations()
1604 CHECK(it == native_object_relocations_.end()) << "Field array " << cur_fields in RecordNativeRelocations()
1608 native_object_relocations_.emplace( in RecordNativeRelocations()
1618 auto it2 = native_object_relocations_.find(field); in RecordNativeRelocations()
1619 CHECK(it2 == native_object_relocations_.end()) << "Field at index=" << i in RecordNativeRelocations()
1622 native_object_relocations_.emplace( in RecordNativeRelocations()
1655 auto it = native_object_relocations_.find(array); in RecordNativeRelocations()
1656 CHECK(it == native_object_relocations_.end()) in RecordNativeRelocations()
[all …]
Dimage_writer.h698 std::unordered_map<void*, NativeObjectRelocation> native_object_relocations_; variable