Home
last modified time | relevance | path

Searched refs:inflateToBuffer (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/androidfw/
DZipUtils.cpp54 /*static*/ template<typename T> bool inflateToBuffer(T& reader, void* buf, in inflateToBuffer() function
216 /*static*/ bool ZipUtils::inflateToBuffer(FILE* fp, void* buf, in inflateToBuffer() function in ZipUtils
220 return ::inflateToBuffer<FileReader>(reader, buf, in inflateToBuffer()
224 /*static*/ bool ZipUtils::inflateToBuffer(int fd, void* buf, in inflateToBuffer() function in ZipUtils
228 return ::inflateToBuffer<FdReader>(reader, buf, in inflateToBuffer()
232 /*static*/ bool ZipUtils::inflateToBuffer(void* in, void* buf, in inflateToBuffer() function in ZipUtils
236 return ::inflateToBuffer<BufferReader>(reader, buf, in inflateToBuffer()
DAsset.cpp863 if (!ZipUtils::inflateToBuffer(mMap->getDataPtr(), buf, in getBuffer()
878 if (!ZipUtils::inflateToBuffer(mFd, buf, mUncompressedLen, in getBuffer()
/frameworks/base/include/androidfw/
DZipUtils.h37 static bool inflateToBuffer(FILE* fp, void* buf, long uncompressedLen,
39 static bool inflateToBuffer(int fd, void* buf, long uncompressedLen,
41 static bool inflateToBuffer(void *in, void* buf, long uncompressedLen,
/frameworks/base/tools/aapt/
DZipFile.cpp1192 if (!ZipUtils::inflateToBuffer(mZipFp, buf, unlen, clen)) { in uncompress()