Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/dalvik/system/
DVMRuntimeTest.java32 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, -1); in doTestNewNonMovableArray()
38 … Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, Integer.MIN_VALUE); in doTestNewNonMovableArray()
45 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, i); in doTestNewNonMovableArray()
55 Object array = VMRuntime.getRuntime().newNonMovableArray(null, 0); in testNewNonMovableArray()
62 Object array = VMRuntime.getRuntime().newNonMovableArray(void.class, 0); in testNewNonMovableArray()
/libcore/luni/src/test/java/libcore/libcore/io/
DMemoryTest.java36 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1); in testSetIntArray()
77 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1); in testSetLongArray()
115 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1); in testSetShortArray()
/libcore/libart/src/main/java/dalvik/system/
DVMRuntime.java458 public native Object newNonMovableArray(Class<?> componentType, int length); in newNonMovableArray() method in VMRuntime
/libcore/mmodules/intracoreapi/api/intra/
Dcurrent-api.txt70 …ibcore.api.CorePlatformApi @libcore.api.IntraCoreApi public Object newNonMovableArray(Class<?>, in…
/libcore/ojluni/src/main/java/java/nio/
DDirectByteBuffer.java70 buffer = (byte[]) runtime.newNonMovableArray(byte.class, capacity + 7); in MemoryRef()
/libcore/mmodules/core_platform_api/api/legacy_platform/
Dcurrent-api.txt678 … method @dalvik.annotation.optimization.FastNative public Object newNonMovableArray(Class<?>, int);