Home
last modified time | relevance | path

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

/art/tools/ahat/src/test-dump/android/graphics/
DBitmap.java39 private final byte[][] buffers; field in Bitmap.DumpData
47 this.buffers = new byte[max][]; in DumpData()
53 buffers[count] = buffer; in add()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatBitmapInstance.java61 private Map<Long, byte[]> buffers; field in AhatBitmapInstance.BitmapDumpData
68 this.buffers = new HashMap<Long, byte[]>(count); in BitmapDumpData()
149 AhatArrayInstance buffers = inst.getArrayField("buffers"); in toBitmapDumpData() local
150 if (natives == null || buffers == null) { in toBitmapDumpData()
155 result.referenced.add(buffers.getId()); in toBitmapDumpData()
157 result.buffers = new HashMap<>(result.count); in toBitmapDumpData()
160 Value bufferVal = buffers.getValue(i); in toBitmapDumpData()
165 result.buffers.put(nativePtr.asLong(), buffer.asArrayInstance().asByteArray()); in toBitmapDumpData()
274 if (!bitmapDumpData.buffers.containsKey(nativePtr)) { in getBitmapInfo()
278 buffer = bitmapDumpData.buffers.get(nativePtr); in getBitmapInfo()
/art/test/070-nio-buffer/
Dinfo.txt1 Exercise NIO buffers (e.g. java.nio.ByteBuffer).
/art/test/1964-add-to-dex-classloader-file/
Dinfo.txt1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
/art/test/1963-add-to-dex-classloader-in-memory/
Dinfo.txt1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
/art/test/712-varhandle-invocations/src/
DVarHandleBadCoordinateTests.java581 ByteBuffer[] buffers = in doTest() local
587 for (ByteBuffer buffer : buffers) { in doTest()
615 ByteBuffer[] buffers = in doTest() local
622 for (ByteBuffer buffer : buffers) { in doTest()
827 ByteBuffer[] buffers = in doTest() local
834 for (ByteBuffer buffer : buffers) { in doTest()
865 ByteBuffer[] buffers = in doTest() local
871 for (ByteBuffer buffer : buffers) { in doTest()
DVarHandleArrayTests.java230 final ByteBuffer[] buffers = { in testByteBufferVarHandle() local
240 for (final ByteBuffer buffer : buffers) { in testByteBufferVarHandle()
/art/runtime/native/
Ddalvik_system_DexFile.cc255 jobjectArray buffers, in DexFile_openInMemoryDexFilesNative() argument
261 jsize buffers_length = env->GetArrayLength(buffers); in DexFile_openInMemoryDexFilesNative()
273 jobject buffer = env->GetObjectArrayElement(buffers, i); in DexFile_openInMemoryDexFilesNative()