Searched refs:mCompressedSize (Results 1 – 7 of 7) sorted by relevance
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/ |
H A D | BufferedZipFilePerfTest.java | 45 int[] mCompressedSize = new int[] {128, 1024, 8192, 65536}; field in BufferedZipFilePerfTest 54 for (int i = 0; i < mCompressedSize.length; i++) { in setUp() 56 out.putNextEntry(new ZipEntry("entry.data" + mCompressedSize[i])); in setUp() 58 while (written < mCompressedSize[i]) { in setUp() 60 int toWrite = Math.min(mCompressedSize[i] - written, data.length); in setUp() 72 for (int i = 0; i < mCompressedSize.length; i++) { in timeUnbufferedRead() 75 ZipEntry entry = zipFile.getEntry("entry.data" + mCompressedSize[i]); in timeUnbufferedRead() 92 for (int i = 0; i < mCompressedSize.length; i++) { in timeBufferedRead() 95 ZipEntry entry = zipFile.getEntry("entry.data" + mCompressedSize[i]); in timeBufferedRead()
|
/aosp14/frameworks/base/media/java/android/mtp/ |
H A D | MtpObjectInfo.java | 36 private int mCompressedSize; field in MtpObjectInfo 106 Preconditions.checkState(mCompressedSize >= 0); in getCompressedSize() 107 return mCompressedSize; in getCompressedSize() 116 return uint32ToLong(mCompressedSize); in getCompressedSizeLong() 374 mObjectInfo.mCompressedSize = objectInfo.mCompressedSize; in Builder() 409 mObjectInfo.mCompressedSize = longToUint32(value, "value"); in setCompressedSize()
|
/aosp14/frameworks/base/tools/aapt/ |
H A D | ZipEntry.h | 73 off_t getCompressedLen(void) const { return mCDE.mCompressedSize; } in getCompressedLen() 229 mCompressedSize(0), in LocalFileHeader() 251 unsigned long mCompressedSize; variable 280 mCompressedSize(0), in CentralDirEntry() 312 unsigned long mCompressedSize; variable
|
H A D | ZipEntry.cpp | 225 mLFH.mCompressedSize = mCDE.mCompressedSize; in copyCDEtoLFH() 247 mCDE.mCompressedSize = compLen; in setDataInfo() 289 if (mCDE.mCompressedSize != mLFH.mCompressedSize) { in compareHeaders() 410 mCompressedSize = ZipEntry::getLongLE(&buf[0x12]); in read() 463 ZipEntry::putLongLE(&buf[0x12], mCompressedSize); in write() 498 mCompressedSize, mUncompressedSize); in dump() 547 mCompressedSize = ZipEntry::getLongLE(&buf[0x14]); in read() 622 ZipEntry::putLongLE(&buf[0x14], mCompressedSize); in write() 667 mCompressedSize, mUncompressedSize); in dump() 701 mCompressedSize = src.mCompressedSize; in operator =()
|
/aosp14/frameworks/base/media/jni/ |
H A D | android_mtp_MtpDevice.cpp | 245 if (objectInfo->mCompressedSize) in fill_jobject_from_object_info() 246 env->SetIntField(object, field_objectInfo_compressedSize, objectInfo->mCompressedSize); in fill_jobject_from_object_info() 769 object_info->mCompressedSize = env->GetIntField(info, field_objectInfo_compressedSize); in android_mtp_MtpDevice_send_object_info()
|
H A D | android_mtp_MtpDatabase.cpp | 846 info.mCompressedSize = (length > 0xFFFFFFFFLL ? 0xFFFFFFFF : (uint32_t)length); in getObjectInfo()
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 32259 Landroid/mtp/MtpObjectInfo;->mCompressedSize:I
|