Searched defs:objectSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.h44 int objectSize() { return mSize; } function in class:android::uirenderer::GpuMemoryTracker
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DMtpClient.java373 * @param objectSize the size of the object (this should match
377 public byte[] getObject(String deviceName, int objectHandle, int objectSize) { argument
382 return device.getObject(objectHandle, objectSize);
/frameworks/base/media/java/android/mtp/
H A DMtpDevice.java157 * @param objectSize the size of the object (this should match
161 public byte[] getObject(int objectHandle, int objectSize) { argument
162 Preconditions.checkArgumentNonnegative(objectSize, "objectSize should not be negative");
163 return native_get_object(objectHandle, objectSize);
363 * fetch 4GB+ object size correctly. If the device does not support objectSize property, it
381 private native byte[] native_get_object(int objectHandle, long objectSize); argument
383 int objectHandle, long offset, long objectSize, byte[] buffer) throws IOException;
385 int objectHandle, long offset, long objectSize, byte[] buffer) throws IOException;
382 native_get_partial_object( int objectHandle, long offset, long objectSize, byte[] buffer) argument
384 native_get_partial_object_64( int objectHandle, long offset, long objectSize, byte[] buffer) argument
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDevice.cpp392 uint32_t objectSize; local
393 if (!check_uint32_arg(env, "objectSize", objectSizeLong, &objectSize)) {
402 ScopedLocalRef<jbyteArray> array(env, env->NewByteArray(objectSize));
410 if (device->readObject(objectID, JavaArrayWriter::writeTo, objectSize, &writer)) {

Completed in 130 milliseconds