Searched defs:objectSize (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/libs/hwui/ |
H A D | GpuMemoryTracker.h | 45 int objectSize() { return mSize; } function in class:android::uirenderer::GpuMemoryTracker
|
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
H A D | MtpClient.java | 373 * @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 D | MtpDevice.java | 203 * @param objectSize the size of the object (this should match 207 public @Nullable byte[] getObject(int objectHandle, int objectSize) { argument 208 Preconditions.checkArgumentNonnegative(objectSize, "objectSize should not be negative"); 209 return native_get_object(objectHandle, objectSize); 410 * fetch 4GB+ object size correctly. If the device does not support objectSize property, it 428 private native byte[] native_get_object(int objectHandle, long objectSize); argument 430 int objectHandle, long offset, long objectSize, byte[] buffer) throws IOException; 432 int objectHandle, long offset, long objectSize, byte[] buffer) throws IOException; 429 native_get_partial_object( int objectHandle, long offset, long objectSize, byte[] buffer) argument 431 native_get_partial_object_64( int objectHandle, long offset, long objectSize, byte[] buffer) argument
|
/frameworks/base/media/jni/ |
H A D | android_mtp_MtpDevice.cpp | 395 uint32_t objectSize; local 396 if (!check_uint32_arg(env, "objectSize", objectSizeLong, &objectSize)) { 405 ScopedLocalRef<jbyteArray> array(env, env->NewByteArray(objectSize)); 413 if (device->readObject(objectID, JavaArrayWriter::writeTo, objectSize, &writer)) {
|
Completed in 108 milliseconds