Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_System.cc72 ObjPtr<mirror::Object> dstObject = soa.Decode<mirror::Object>(javaDst); in System_arraycopy() local
73 if (UNLIKELY(!dstObject->IsArrayInstance())) { in System_arraycopy()
74 ThrowArrayStoreException_NotAnArray("destination", dstObject); in System_arraycopy()
78 ObjPtr<mirror::Array> dstArray = dstObject->AsArray(); in System_arraycopy()
179 ObjPtr<mirror::Object> dstObject = soa.Decode<mirror::Object>(javaDst); in System_arraycopyTUnchecked() local
180 DCHECK(dstObject != nullptr); in System_arraycopyTUnchecked()
182 ObjPtr<mirror::Array> dstArray = dstObject->AsArray(); in System_arraycopyTUnchecked()