Home
last modified time | relevance | path

Searched refs:mCompressedSize (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/tools/aapt/
DZipEntry.h72 off_t getCompressedLen(void) const { return mCDE.mCompressedSize; } in getCompressedLen()
228 mCompressedSize(0), in LocalFileHeader()
250 unsigned long mCompressedSize; variable
279 mCompressedSize(0), in CentralDirEntry()
309 unsigned long mCompressedSize; variable
DZipEntry.cpp242 mLFH.mCompressedSize = mCDE.mCompressedSize; in copyCDEtoLFH()
264 mCDE.mCompressedSize = compLen; in setDataInfo()
306 if (mCDE.mCompressedSize != mLFH.mCompressedSize) { in compareHeaders()
427 mCompressedSize = ZipEntry::getLongLE(&buf[0x12]); in read()
480 ZipEntry::putLongLE(&buf[0x12], mCompressedSize); in write()
515 mCompressedSize, mUncompressedSize); in dump()
564 mCompressedSize = ZipEntry::getLongLE(&buf[0x14]); in read()
639 ZipEntry::putLongLE(&buf[0x14], mCompressedSize); in write()
684 mCompressedSize, mUncompressedSize); in dump()
/frameworks/av/media/mtp/
DMtpObjectInfo.cpp32 mCompressedSize(0), in MtpObjectInfo()
65 mCompressedSize = packet.getUInt32(); in read()
98 mCompressedSize, mFormat, mThumbCompressedSize); in print()
DMtpObjectInfo.h32 uint32_t mCompressedSize; variable
DMtpDevice.cpp423 mData.putUInt32(info->mCompressedSize); in sendObjectInfo()
463 int remaining = info->mCompressedSize; in sendObject()
DMtpServer.cpp689 uint32_t size = info.mCompressedSize; in doGetObjectInfo()
/frameworks/base/media/java/android/mtp/
DMtpObjectInfo.java29 private int mCompressedSize; field in MtpObjectInfo
99 return mCompressedSize; in getCompressedSize()
/frameworks/base/media/jni/
Dandroid_mtp_MtpDevice.cpp264 if (objectInfo->mCompressedSize) in android_mtp_MtpDevice_get_object_info()
265 env->SetIntField(info, field_objectInfo_compressedSize, objectInfo->mCompressedSize); in android_mtp_MtpDevice_get_object_info()
Dandroid_mtp_MtpDatabase.cpp763 info.mCompressedSize = (length > 0xFFFFFFFFLL ? 0xFFFFFFFF : (uint32_t)length); in getObjectInfo()