Lines Matching refs:ObjectArray

89 using ::art::mirror::ObjectArray;
152 ObjPtr<mirror::ObjectArray<mirror::Object>> AllocateBootImageLiveObjects( in AllocateBootImageLiveObjects()
159 Handle<mirror::ObjectArray<mirror::Object>> integer_cache = in AllocateBootImageLiveObjects()
164 ObjPtr<mirror::ObjectArray<mirror::Object>> live_objects = in AllocateBootImageLiveObjects()
165 mirror::ObjectArray<mirror::Object>::Alloc( in AllocateBootImageLiveObjects()
166 self, GetClassRoot<mirror::ObjectArray<mirror::Object>>(class_linker), live_objects_size); in AllocateBootImageLiveObjects()
1008 ObjPtr<mirror::ObjectArray<mirror::Class>> class_roots = in operator ()()
1463 ObjPtr<mirror::ObjectArray<mirror::Object>> ImageWriter::CollectDexCaches(Thread* self, in CollectDexCaches()
1496 ObjPtr<ObjectArray<Object>> dex_caches = ObjectArray<Object>::Alloc( in CollectDexCaches()
1497 self, GetClassRoot<ObjectArray<Object>>(class_linker), dex_cache_count); in CollectDexCaches()
1534 ObjPtr<ObjectArray<Object>> ImageWriter::CreateImageRoots( in CreateImageRoots()
1536 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const { in CreateImageRoots()
1542 Handle<ObjectArray<Object>> dex_caches(hs.NewHandle(CollectDexCaches(self, oat_index))); in CreateImageRoots()
1546 Handle<ObjectArray<Object>> image_roots(hs.NewHandle(ObjectArray<Object>::Alloc( in CreateImageRoots()
1547 self, GetClassRoot<ObjectArray<Object>>(class_linker), image_roots_size))); in CreateImageRoots()
2386 static ObjPtr<ObjectArray<Object>> GetBootImageLiveObjects() REQUIRES_SHARED(Locks::mutator_lock_) { in GetBootImageLiveObjects()
2390 return ObjPtr<ObjectArray<Object>>::DownCast( in GetBootImageLiveObjects()
2398 MutableHandle<ObjectArray<Object>> boot_image_live_objects = handles.NewHandle( in CalculateNewObjectOffsets()
2402 std::vector<Handle<ObjectArray<Object>>> image_roots; in CalculateNewObjectOffsets()
3196 ObjPtr<mirror::ObjectArray<mirror::Class>> class_roots = in FixupObject()